Expand description
Macros§
- lazy_
vec - Create a new
LazyVec<T>
value.
Structs§
- LazyVec
- A lazily initialized version of
Vec<T>
. Specifically,LazyVec<T>
is initialized with a certain length, where each cell is set to a pointer-sized value (which is the same size as ausize
)