Trait building_blocks::prelude::FillExtent[][src]

pub trait FillExtent<N> {
    type Item;
    fn fill_extent(&mut self, extent: &ExtentN<N>, value: Self::Item);
}

Associated Types

Required methods

Implementations on Foreign Types

Fill the entire extent with the same value.

Fill all of extent with the same value.

Implementors