pub trait IntoPosIterator: BaseVol {
    type IntoIter: Iterator<Item = Vec3<i32>>;

    // Required method
    fn pos_iter(
        self,
        lower_bound: Vec3<i32>,
        upper_bound: Vec3<i32>
    ) -> Self::IntoIter;
}

Required Associated Types§

Required Methods§

source

fn pos_iter( self, lower_bound: Vec3<i32>, upper_bound: Vec3<i32> ) -> Self::IntoIter

Implementors§

source§

impl<'a, V, M, A: Access> IntoPosIterator for &'a Dyna<V, M, A>

source§

impl<'a, V, S: RectVolSize, M: Clone> IntoPosIterator for &'a Chonk<V, S, M>

§

type IntoIter = ChonkPosIter<V, S, M>

source§

impl<'a, V, S: VolSize, M> IntoPosIterator for &'a Chunk<V, S, M>

§

type IntoIter = ChunkPosIter<V, S, M>