pub struct ArrayIterator<T, const N: u64> {
    array: [T; N],
    idx: u64,
}
Expand description

Fields

array: [T; N]idx: u64

Trait Implementations

type Item = T

pub fn next(refmut self) -> Option<Self::Item>