Skip to main content

DynamicArray

Trait DynamicArray 

Source
pub trait DynamicArray<V>:
    CopyMap<usize, V>
    + DynamicContainer
    + Index<usize, Output = V>
    + IndexMut<usize, Output = V> { }
Expand description

Dynamically-sized array of values.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§