Module jagged_arrays

Source
Expand description

Generic implementations of jagged arrays or slice of slices, etc.

Structs§

ConIterJaggedOwned
Flattened concurrent iterator of a raw jagged array yielding owned elements.
ConIterJaggedRef
Flattened concurrent iterator of a raw jagged array yielding references to elements.
JaggedIndex
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>.
RawJaggedRef
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§

AsRawSlice
A type that can be represented as a slice.
AsSlice
A type that can be represented as a contagious slice.
JaggedIndexer
An indexer for the raw jagged arrays.
Slices
A collection of slices.