Expand description
§nyarray
small vector types.
use crate::array::Array for a stack-allocated vector, and use crate::switch::SwitchVec for a stack-allocated vector that can switch to heap allocation.
Modules§
- array
- stack-allocated array structure.
similar to
Vecin functionality, exceptArraylives on the ‘stack’, lending it well for scratch arrays. - switch
- a combination of the stack-allocated
crate::array::Arrayand the heap-allocatedVec.