pub trait Iterator: Iterator {
// Required methods
fn produces(self, visited: Seq<Self::Item>, o: Self) -> bool;
fn completed(&mut self) -> bool;
fn produces_refl(self);
fn produces_trans(
a: Self,
ab: Seq<Self::Item>,
b: Self,
bc: Seq<Self::Item>,
c: Self,
);
// Provided method
fn map_inv<B, F>(self, func: F) -> MapInv<Self, Self::Item, F>
where Self: Sized,
F: FnMut(Self::Item, Snapshot<Seq<Self::Item>>) -> B { ... }
}
Required Methods§
Sourcefn produces_refl(self)
fn produces_refl(self)
law
ensures
self.produces(Seq::EMPTY, self)
Provided Methods§
Sourcefn map_inv<B, F>(self, func: F) -> MapInv<Self, Self::Item, F>
fn map_inv<B, F>(self, func: F) -> MapInv<Self, Self::Item, F>
requires
forall<e : Self::Item, i2 : Self> self.produces(Seq::singleton(e), i2) ==> func.precondition((e, Snapshot::new(Seq::EMPTY)))
requires
MapInv::<Self, _, F>::reinitialize()
requires
MapInv::<Self, Self::Item, F>::preservation(self, func)
ensures
result == MapInv { iter: self, func, produced: Snapshot::new(Seq::EMPTY) }
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
Source§impl<'a, K: DeepModel, V> Iterator for Iter<'a, K, V>
impl<'a, K: DeepModel, V> Iterator for Iter<'a, K, V>
Source§fn produces(self, visited: Seq<Self::Item>, o: Self) -> bool
fn produces(self, visited: Seq<Self::Item>, o: Self) -> bool
logic(prophetic)
// `self@` equals the union of `visited` (viewed as a finite map) and `o@` pearlite! { self@.len() == visited.len() + o@.len() && (forall<k: &K, v: &V> visited.contains((k, v)) ==> self@.get(k.deep_model()) == Some(*v) && o@.get(k.deep_model()) == None) && (forall<k: K::DeepModelTy, v: V> o@.get(k) == Some(v) ==> self@.get(k) == Some(v) && !exists<k2: &K, v2: &V> k2.deep_model() == k && visited.contains((k2, v2))) && (forall<k: K::DeepModelTy, v: V> self@.get(k) == Some(v) ==> (exists<k2: &K> k2.deep_model() == k && visited.contains((k2, &v))) || o@.get(k) == Some(v)) && (forall<i1: Int, i2: Int> 0 <= i1 && i1 < visited.len() && 0 <= i2 && i2 < visited.len() && visited[i1].0.deep_model() == visited[i2].0.deep_model() ==> i1 == i2) }
Source§fn completed(&mut self) -> bool
fn completed(&mut self) -> bool
logic(prophetic)
pearlite! { self.resolve() && self@.is_empty() }
Source§fn produces_refl(self)
fn produces_refl(self)
law
ensures
self.produces(Seq::EMPTY, self)
Source§impl<'a, K: DeepModel, V> Iterator for IterMut<'a, K, V>
impl<'a, K: DeepModel, V> Iterator for IterMut<'a, K, V>
Source§fn produces(self, visited: Seq<Self::Item>, o: Self) -> bool
fn produces(self, visited: Seq<Self::Item>, o: Self) -> bool
logic(prophetic)
// self@ equals the union of visited (viewed as a fmap) and o@ pearlite! { self@.len() == visited.len() + o@.len() && (forall<k: K, v: &mut V> visited.contains((&k, v)) ==> self@.get(k.deep_model()) == Some(v) && o@.get(k.deep_model()) == None) && (forall<k: K::DeepModelTy, v: &mut V> o@.get(k) == Some(v) ==> self@.get(k) == Some(v) && !exists<k2: &K, v2: &mut V> k2.deep_model() == k && visited.contains((k2, v2))) && (forall<k: K::DeepModelTy, v: &mut V> self@.get(k) == Some(v) ==> (exists<k1: &K> k1.deep_model() == k && visited.contains((k1, v))) || o@.get(k) == Some(v)) && (forall<i1: Int, i2: Int> 0 <= i1 && i1 < visited.len() && 0 <= i2 && i2 < visited.len() && visited[i1].0.deep_model() == visited[i2].0.deep_model() ==> i1 == i2) }
Source§fn completed(&mut self) -> bool
fn completed(&mut self) -> bool
logic(prophetic)
pearlite! { self.resolve() && self@.is_empty() }
Source§fn produces_refl(self)
fn produces_refl(self)
law
ensures
self.produces(Seq::EMPTY, self)
Source§impl<'a, T> Iterator for Iter<'a, T>
impl<'a, T> Iterator for Iter<'a, T>
Source§fn completed(&mut self) -> bool
fn completed(&mut self) -> bool
logic(prophetic)
pearlite! { self.resolve() && (*self@)@ == Seq::EMPTY }
Source§fn produces(self, visited: Seq<Self::Item>, tl: Self) -> bool
fn produces(self, visited: Seq<Self::Item>, tl: Self) -> bool
logic
pearlite! { self@.to_ref_seq() == visited.concat(tl@.to_ref_seq()) }
Source§fn produces_refl(self)
fn produces_refl(self)
law
ensures
self.produces(Seq::EMPTY, self)
Source§impl<'a, T: DeepModel> Iterator for Iter<'a, T>
impl<'a, T: DeepModel> Iterator for Iter<'a, T>
Source§impl<'a, T: Eq + Hash + DeepModel, S: BuildHasher> Iterator for Difference<'a, T, S>
impl<'a, T: Eq + Hash + DeepModel, S: BuildHasher> Iterator for Difference<'a, T, S>
Source§impl<'a, T: Eq + Hash + DeepModel, S: BuildHasher> Iterator for Intersection<'a, T, S>
impl<'a, T: Eq + Hash + DeepModel, S: BuildHasher> Iterator for Intersection<'a, T, S>
Source§impl<I: Iterator + ?Sized> Iterator for &mut I
impl<I: Iterator + ?Sized> Iterator for &mut I
Source§fn produces(self, visited: Seq<Self::Item>, o: Self) -> bool
fn produces(self, visited: Seq<Self::Item>, o: Self) -> bool
logic(prophetic)
pearlite! { (*self).produces(visited, *o) && ^self == ^o }
Source§fn completed(&mut self) -> bool
fn completed(&mut self) -> bool
logic(prophetic)
pearlite! { (*self).completed() && ^*self == ^^self }
Source§fn produces_refl(self)
fn produces_refl(self)
law
ensures
self.produces(Seq::EMPTY, self)
Source§impl<K: DeepModel, V> Iterator for IntoIter<K, V>
impl<K: DeepModel, V> Iterator for IntoIter<K, V>
Source§fn produces(self, visited: Seq<Self::Item>, o: Self) -> bool
fn produces(self, visited: Seq<Self::Item>, o: Self) -> bool
logic(prophetic)
// self@ equals the union of visited (viewed as a fmap) and o@ pearlite! { self@.len() == visited.len() + o@.len() && (forall<k: K, v: V> visited.contains((k, v)) ==> self@.get(k.deep_model()) == Some(v) && o@.get(k.deep_model()) == None) && (forall<k: K::DeepModelTy, v: V> o@.get(k) == Some(v) ==> self@.get(k) == Some(v) && !exists<k2: K, v2: V> k2.deep_model() == k && visited.contains((k2, v2))) && (forall<k: K::DeepModelTy, v: V> self@.get(k) == Some(v) ==> (exists<k1: K> k1.deep_model() == k && visited.contains((k1, v))) || o@.get(k) == Some(v)) && (forall<i1: Int, i2: Int> 0 <= i1 && i1 < visited.len() && 0 <= i2 && i2 < visited.len() && visited[i1].0.deep_model() == visited[i2].0.deep_model() ==> i1 == i2) }
Source§fn completed(&mut self) -> bool
fn completed(&mut self) -> bool
logic(prophetic)
pearlite! { self.resolve() && self@.is_empty() }
Source§fn produces_refl(self)
fn produces_refl(self)
law
ensures
self.produces(Seq::EMPTY, self)
Source§impl<T, const N: usize> Iterator for IntoIter<T, N>
impl<T, const N: usize> Iterator for IntoIter<T, N>
Source§fn produces(self, visited: Seq<Self::Item>, o: Self) -> bool
fn produces(self, visited: Seq<Self::Item>, o: Self) -> bool
logic(prophetic)
pearlite! { self@ == visited.concat(o@) }
Source§fn completed(&mut self) -> bool
fn completed(&mut self) -> bool
logic(prophetic)
pearlite! { self.resolve() && self@ == Seq::EMPTY }
Source§fn produces_refl(self)
fn produces_refl(self)
law
ensures
self.produces(Seq::EMPTY, self)