Expand description
Generic implementations of jagged arrays or slice of slices, etc.
Structs§
- ConIter
Jagged Owned - Flattened concurrent iterator of a raw jagged array yielding owned elements.
- ConIter
Jagged Ref - Flattened concurrent iterator of a raw jagged array yielding references to elements.
- Jagged
Index - Index of an element in a jagged array.
- RawJagged
- Raw representation of a jagged array.
Internally, the jagged array is stored as a vector of
RawVec<T>
. - RawJagged
Ref - Raw representation of a reference to a jagged array.
- RawSlice
- Raw representation of a slice defined by a pointer and length.
- RawVec
- Raw representation of a vector defined by a pointer, capacity and length.
Traits§
- AsRaw
Slice - A type that can be represented as a slice.
- AsSlice
- A type that can be represented as a contagious slice.
- Jagged
Indexer - An indexer for the raw jagged arrays.
- Slices
- A collection of slices.