Module vector

Source
Expand description

A module containing Vector and associtated types.

Currently, the only other included type is IntoIter for owned iteration over an Vector, which is a re-export of array::IntoIter. IterMut and Iter from std::slice are used for borrowed iteration.

Vector is also re-exported under the parent module.

Structsยง

IntoIter
A type for owned iteration over an Array or Vector. Produces values of type T.
Vector
A variable size contiguous collection, based on Array<T>.