Trait Transpose

Source
pub trait Transpose {
    type Output;

    // Required method
    fn transpose(&self) -> Self::Output;
}
Expand description

The Transpose trait generically establishes an interface for transposing a type

Required Associated Types§

Source

type Output

the output, or result, of the transposition

Required Methods§

Source

fn transpose(&self) -> Self::Output

transpose a reference to the current object

Implementations on Foreign Types§

Source§

impl<'a, A, S, D> Transpose for &'a ArrayBase<S, D>
where A: 'a, D: Dimension, S: Data<Elem = A>,

Implementors§

Source§

impl<'a, A, S, D> Transpose for &'a TensorBase<S, D>
where A: 'a, S: Data<Elem = A>, D: Dimension,