pub trait Expand<A, Wrapped> {
    fn expand_layers<F: Fn(A) -> Wrapped>(a: A, expand_layer: F) -> Self;
}
Expand description

Support for expanding a structure from a seed value, one layer at a time

Required Methods

Implementors