Module dense

Module dense 

Source
Expand description

Dense

A fully filled contiguous space of memory. If 1d, then this structure is the same as a vector; if 2d, then this structure is the same as a matrix; if 3d, then this structure is the same as a cube and so on for higher dimensions.

Structs§

Dense
Base structure for all Dense variants.

Enums§

DenseError
Any error related to Coo operations

Type Aliases§

DenseArray
Dense backed by a static array.
DenseMut
Dense backed by a mutable slice
DenseRef
Dense backed by a slice
DenseVec
Dense backed by a dynamic vector.