Trait toad_common::array::Filled
source · pub trait Filled<T>: Sized {
fn filled_using<F>(f: F) -> Option<Self>
where
F: Fn() -> T;
fn filled(t: T) -> Option<Self>
where
T: Copy,
{ ... }
fn filled_default() -> Option<Self>
where
T: Default,
{ ... }
}