pub trait IntoIterator: IntoIterator{
// Required method
fn into_iter_post(self, res: Self::IntoIter) -> bool;
// Provided method
fn into_iter_pre(self) -> bool { ... }
}
Required Methods§
Sourcefn into_iter_post(self, res: Self::IntoIter) -> bool
fn into_iter_post(self, res: Self::IntoIter) -> bool
logic(prophetic)
Provided Methods§
Sourcefn into_iter_pre(self) -> bool
fn into_iter_pre(self) -> bool
logic
pearlite! { true }
Implementations on Foreign Types§
Source§impl<K: DeepModel, V, S> IntoIterator for &HashMap<K, V, S>
impl<K: DeepModel, V, S> IntoIterator for &HashMap<K, V, S>
Source§fn into_iter_pre(self) -> bool
fn into_iter_pre(self) -> bool
logic
pearlite! { true }
Source§fn into_iter_post(self, res: Self::IntoIter) -> bool
fn into_iter_post(self, res: Self::IntoIter) -> bool
logic
pearlite! { self@ == res@ }
Source§impl<K: DeepModel, V, S> IntoIterator for &mut HashMap<K, V, S>
impl<K: DeepModel, V, S> IntoIterator for &mut HashMap<K, V, S>
Source§fn into_iter_pre(self) -> bool
fn into_iter_pre(self) -> bool
logic
pearlite! { true }
Source§fn into_iter_post(self, res: Self::IntoIter) -> bool
fn into_iter_post(self, res: Self::IntoIter) -> bool
logic(prophetic)
pearlite! { forall<k: K::DeepModelTy> (*self)@.contains(k) == (^self)@.contains(k) && (forall<k: K::DeepModelTy> (*self)@.contains(k) == res@.contains(k)) && forall<k: K::DeepModelTy> (*self)@.contains(k) ==> (*self)@[k] == *res@[k] && (^self)@[k] == ^res@[k] }
Source§impl<K: DeepModel, V, S> IntoIterator for HashMap<K, V, S>
impl<K: DeepModel, V, S> IntoIterator for HashMap<K, V, S>
Source§fn into_iter_pre(self) -> bool
fn into_iter_pre(self) -> bool
logic
pearlite! { true }
Source§fn into_iter_post(self, res: Self::IntoIter) -> bool
fn into_iter_post(self, res: Self::IntoIter) -> bool
logic
pearlite! { self@ == res@ }
Source§impl<T> IntoIterator for &[T]
impl<T> IntoIterator for &[T]
Source§fn into_iter_pre(self) -> bool
fn into_iter_pre(self) -> bool
logic
pearlite! { true }
Source§fn into_iter_post(self, res: Self::IntoIter) -> bool
fn into_iter_post(self, res: Self::IntoIter) -> bool
logic
pearlite! { self == res@ }
Source§impl<T> IntoIterator for &mut [T]
impl<T> IntoIterator for &mut [T]
Source§fn into_iter_pre(self) -> bool
fn into_iter_pre(self) -> bool
logic
pearlite! { true }
Source§fn into_iter_post(self, res: Self::IntoIter) -> bool
fn into_iter_post(self, res: Self::IntoIter) -> bool
logic
pearlite! { self == res@ }
Source§impl<T, const N: usize> IntoIterator for [T; N]
impl<T, const N: usize> IntoIterator for [T; N]
Source§fn into_iter_pre(self) -> bool
fn into_iter_pre(self) -> bool
logic
pearlite! { true }
Source§fn into_iter_post(self, res: Self::IntoIter) -> bool
fn into_iter_post(self, res: Self::IntoIter) -> bool
logic(prophetic)
pearlite! { self@ == res@ }
Source§impl<T: DeepModel, S> IntoIterator for &HashSet<T, S>
impl<T: DeepModel, S> IntoIterator for &HashSet<T, S>
Source§fn into_iter_pre(self) -> bool
fn into_iter_pre(self) -> bool
logic
pearlite! { true }
Source§fn into_iter_post(self, res: Self::IntoIter) -> bool
fn into_iter_post(self, res: Self::IntoIter) -> bool
logic
pearlite! { self@ == res@ }
Source§impl<T: DeepModel, S> IntoIterator for HashSet<T, S>
impl<T: DeepModel, S> IntoIterator for HashSet<T, S>
Source§fn into_iter_pre(self) -> bool
fn into_iter_pre(self) -> bool
logic
pearlite! { true }
Source§fn into_iter_post(self, res: Self::IntoIter) -> bool
fn into_iter_post(self, res: Self::IntoIter) -> bool
logic
pearlite! { self@ == res@ }