pub type CowTensor<'a, T> = TensorBase<CowData<'a, T>, DynLayout>;Expand description
Owned or borrowed tensor with a dynamic dimension count.
CowTensors can be created using as_cow (to
borrow) or into_cow.
The name comes from std::borrow::Cow.
Aliased Typeยง
pub struct CowTensor<'a, T> { /* private fields */ }