use crate::trusted_len::TrustedLen;
use super::Bitmap;
#[derive(Debug, Clone)]
pub struct IntoIter {
values: Bitmap,
index: usize,
end: usize,
}
impl IntoIter {
#[inline]
pub fn new(values: Bitmap) -> Self {
let end = values.len();
Self {
values,
index: 0,
end,
}
}
}
impl Iterator for IntoIter {
type Item = bool;
#[inline]
fn next(&mut self) -> Option<Self::Item> {
if self.index == self.end {
return None;
}
let old = self.index;
self.index += 1;
Some(unsafe { self.values.get_bit_unchecked(old) })
}
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
(self.end - self.index, Some(self.end - self.index))
}
#[inline]
fn nth(&mut self, n: usize) -> Option<Self::Item> {
let new_index = self.index + n;
if new_index > self.end {
self.index = self.end;
None
} else {
self.index = new_index;
self.next()
}
}
}
impl DoubleEndedIterator for IntoIter {
#[inline]
fn next_back(&mut self) -> Option<Self::Item> {
if self.index == self.end {
None
} else {
self.end -= 1;
Some(unsafe { self.values.get_bit_unchecked(self.end) })
}
}
}
unsafe impl TrustedLen for IntoIter {}