orx_linked_list/iter/
singly_iter_mut.rsuse crate::Singly;
use core::iter::FusedIterator;
use orx_pinned_vec::PinnedVec;
use orx_selfref_col::{CoreCol, Node, NodePtr};
pub struct SinglyIterMut<'a, T, P>
where
P: PinnedVec<Node<Singly<T>>>,
{
pub(crate) col: &'a mut CoreCol<Singly<T>, P>,
current: Option<NodePtr<Singly<T>>>,
}
impl<'a, T, P> SinglyIterMut<'a, T, P>
where
P: PinnedVec<Node<Singly<T>>>,
{
pub(crate) fn new_old(col: &'a mut CoreCol<Singly<T>, P>) -> Self {
let current = col.ends().get();
Self { col, current }
}
pub(crate) fn new(
col: &'a mut CoreCol<Singly<T>, P>,
current: Option<NodePtr<Singly<T>>>,
) -> Self {
Self { col, current }
}
}
impl<'a, T, P> Iterator for SinglyIterMut<'a, T, P>
where
P: PinnedVec<Node<Singly<T>>>,
{
type Item = &'a mut T;
fn next(&mut self) -> Option<Self::Item> {
match &self.current {
Some(p) => {
let ptr = p.ptr();
self.current = self.col.node(p).next().get();
unsafe { &mut *ptr }.data_mut()
}
None => None,
}
}
}
impl<'a, T, P> FusedIterator for SinglyIterMut<'a, T, P> where P: PinnedVec<Node<Singly<T>>> {}