Enum dense_mats::StorageOrder [] [src]

pub enum StorageOrder {
    F,
    C,
    Unordered,
}

Describe the storage order of a matrix.

Variants

C storage order, ie column major storage for matrices The dimensions are sorted in decreasing order of variation

C storage order, ie row major storage for matrices The dimensions are sorted in increasing order of variation

Nothing special can be assumed about the order

Trait Implementations

impl PartialEq for StorageOrder
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for StorageOrder
[src]

Formats the value using the given formatter.