Trait IntoIterator

Source
pub trait IntoIterator: IntoIterator
where Self::IntoIter: Iterator,
{ // Required method fn into_iter_post(self, res: Self::IntoIter) -> bool; // Provided method fn into_iter_pre(self) -> bool { ... } }

Required Methods§

Source

fn into_iter_post(self, res: Self::IntoIter) -> bool

logic(prophetic)

Provided Methods§

Source

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>

Source§

fn into_iter_pre(self) -> bool

logic

pearlite! { true }

Source§

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>

Source§

fn into_iter_pre(self) -> bool

logic

pearlite! { true }

Source§

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>

Source§

fn into_iter_pre(self) -> bool

logic

pearlite! { true }

Source§

fn into_iter_post(self, res: Self::IntoIter) -> bool

logic

pearlite! { self@ == res@ }

Source§

impl<T> IntoIterator for &[T]

Source§

fn into_iter_pre(self) -> bool

logic

pearlite! { true }

Source§

fn into_iter_post(self, res: Self::IntoIter) -> bool

logic

pearlite! { self == res@ }

Source§

impl<T> IntoIterator for &mut [T]

Source§

fn into_iter_pre(self) -> bool

logic

pearlite! { true }

Source§

fn into_iter_post(self, res: Self::IntoIter) -> bool

logic

pearlite! { self == res@ }

Source§

impl<T, const N: usize> IntoIterator for [T; N]

Source§

fn into_iter_pre(self) -> bool

logic

pearlite! { true }

Source§

fn into_iter_post(self, res: Self::IntoIter) -> bool

logic(prophetic)

pearlite! { self@ == res@ }

Source§

impl<T: DeepModel, S> IntoIterator for &HashSet<T, S>

Source§

fn into_iter_pre(self) -> bool

logic

pearlite! { true }

Source§

fn into_iter_post(self, res: Self::IntoIter) -> bool

logic

pearlite! { self@ == res@ }

Source§

impl<T: DeepModel, S> IntoIterator for HashSet<T, S>

Source§

fn into_iter_pre(self) -> bool

logic

pearlite! { true }

Source§

fn into_iter_post(self, res: Self::IntoIter) -> bool

logic

pearlite! { self@ == res@ }

Implementors§

Source§

impl<I: Iterator> IntoIterator for I

Source§

impl<T> IntoIterator for &Option<T>

Source§

impl<T> IntoIterator for &mut Option<T>

Source§

impl<T> IntoIterator for Option<T>

Source§

impl<T, A: Allocator> IntoIterator for &VecDeque<T, A>

Source§

impl<T, A: Allocator> IntoIterator for &Vec<T, A>

Source§

impl<T, A: Allocator> IntoIterator for &mut Vec<T, A>

Source§

impl<T, A: Allocator> IntoIterator for Vec<T, A>