[][src]Trait melange::tensor::shape::Insert

pub unsafe trait Insert<S> {
    type Output;
}

Type operator that inserts dimension S before the first axis.Abs This is useful because dimensions are stored in reverse order in the recursive TArr structure.

Associated Types

type Output

Loading content...

Implementations on Foreign Types

impl<S> Insert<S> for ATerm[src]

type Output = TArr<S, ATerm>

impl<S, A, Z> Insert<Z> for TArr<S, A> where
    A: Insert<Z>, 
[src]

type Output = TArr<S, <A as Insert<Z>>::Output>

Loading content...

Implementors

Loading content...