Trait ToLayoutCowArray2

Source
pub trait ToLayoutCowArray2<A> {
    // Required methods
    fn to_row_layout(&self) -> Result<CowArray<'_, A, Ix2>, BLASError>;
    fn to_col_layout(&self) -> Result<CowArray<'_, A, Ix2>, BLASError>;
}

Required Methods§

Implementations on Foreign Types§

Source§

impl<A> ToLayoutCowArray2<A> for ArrayView2<'_, A>
where A: Clone,

Implementors§