Module contiguous

Source
Expand description

Contiguous collection types. Namely Array and Vector for contiguous collections that vary in size at runtime.

Modules§

array
A module containing Array and associtated types.
vector
A module containing Vector and associtated types.

Structs§

Array
An implementation of an array that has an fixed size at runtime. Similar to a Box<[T]> and not intended as an equivalent to Rust’s primitive [T; N] type, which is sized at compile time.
Vector
A variable size contiguous collection, based on Array<T>.