mathru 0.16.2

Fundamental algorithms for scientific computing in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::algebra::linear::matrix::UnitLowerTriangular;
use core::fmt::{self, Display};

impl<T> Display for UnitLowerTriangular<T>
where
    T: Display,
{
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        self.matrix.fmt(f)
    }
}