Skip to main content

BitReversableMatrix

Trait BitReversableMatrix 

Source
pub trait BitReversableMatrix<T>: Matrix<T>
where T: Send + Sync,
{ type BitRev: BitReversableMatrix<T>; // Required method fn bit_reverse_rows(self) -> Self::BitRev; }
Expand description

A matrix that is possibly bit-reversed, and can easily switch between orderings. Pretty much just either RowMajorMatrix or BitReversedMatrixView<RowMajorMatrix>.

Required Associated Types§

Required Methods§

Source

fn bit_reverse_rows(self) -> Self::BitRev

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§