Module containers::collections::vec [] [src]

Growable arrays

A Vec is a dynamically-allocated array which can grow arbitrarily long as elements are added. The cost to insert an element is O(n) in the worst case, if the array must be reallocated, but as each reallocation is r times as big as the prior for some r, is is O(1) on the mean.

Structs

IntoIter
Vec

Growable array