Trait narrow::NestedArray[][src]

pub trait NestedArray {
    type Child: Array;
    fn child(&self) -> &Self::Child;
}
Expand description

Types storing nested sequences of values.

Associated Types

Required methods

Returns a reference to the child array.

Implementors