Trait Array
containers_rs
pub trait Array<V>: CopyMap<usize, V, (usize, V)> + Index<usize, Output = V> + IndexMut<usize, Output = V> { }
Statically-sized array stored in the heap.