Sortable

Trait Sortable 

Source
pub trait Sortable<'a>
where Self: SparseMatrix<'a>,
{ // Required method fn sort_row(&mut self, i: usize); // Provided method fn sort(&mut self) { ... } }

Required Methods§

Source

fn sort_row(&mut self, i: usize)

Provided Methods§

Source

fn sort(&mut self)

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§

Source§

impl<'a, T, I> Sortable<'a> for SparseMatCRS<T, I>
where T: 'a + ValueType, I: 'a + IndexType,

Source§

impl<'a, T, I> Sortable<'a> for SparseMatIndexList<T, I>
where T: 'a + ValueType, I: 'a + IndexType,

Source§

impl<'a, T, I> Sortable<'a> for SparseMatRowVec<T, I>
where T: 'a + ValueType, I: 'a + IndexType,