Trait custos_math::RowOp
source · [−]pub trait RowOp<T> {
fn add_row(&self, lhs: &Matrix<'_, T>, rhs: &Matrix<'_, T>) -> Matrix<'_, T>;
fn add_row_mut(&self, lhs: &mut Matrix<'_, T>, rhs: &Matrix<'_, T>);
}pub trait RowOp<T> {
fn add_row(&self, lhs: &Matrix<'_, T>, rhs: &Matrix<'_, T>) -> Matrix<'_, T>;
fn add_row_mut(&self, lhs: &mut Matrix<'_, T>, rhs: &Matrix<'_, T>);
}