1 2 3 4 5 6 7 8 9 10 11
use crate::algebra::linear::matrix::UpperTriangular; use core::fmt::{self, Display}; impl<T> Display for UpperTriangular<T> where T: Display, { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { self.matrix.fmt(f) } }