Cat

Trait Cat 

Source
pub trait Cat {
    type Output;

    // Required method
    fn cat(self, dim: i32) -> Self::Output;

    // Provided method
    fn _apply(self, dim: i32) -> Self::Output
       where Self: Sized { ... }
}
Expand description

trait to represent the operation

Required Associated Types§

Source

type Output

the output type

Required Methods§

Source

fn cat(self, dim: i32) -> Self::Output

concatenates the data along the given axis

Provided Methods§

Source

fn _apply(self, dim: i32) -> Self::Output
where Self: Sized,

macro convenience version of the primary method

Implementors§

Source§

impl<B: Backend> Cat for Value<B>