Struct mdarray::ColumnMajor
source · pub struct ColumnMajor;Expand description
Column-major order, for indexing and iteration over array elements.
Trait Implementations
sourceimpl Order for ColumnMajor
impl Order for ColumnMajor
sourceconst IS_COLUMN_MAJOR: bool = true
const IS_COLUMN_MAJOR: bool = true
True if the array has column-major element order.
sourceconst IS_ROW_MAJOR: bool = false
const IS_ROW_MAJOR: bool = false
True if the array has row-major element order.
Auto Trait Implementations
impl RefUnwindSafe for ColumnMajor
impl Send for ColumnMajor
impl Sync for ColumnMajor
impl Unpin for ColumnMajor
impl UnwindSafe for ColumnMajor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more