pub trait HasTensorShapeData<Dtype>: HasTensorShape + HasTensorData<Dtype> {
    // Provided method
    fn coord_to_index(&self, coord: &[Unitless]) -> Unitless { ... }
}

Provided Methods§

source

fn coord_to_index(&self, coord: &[Unitless]) -> Unitless

Implementors§

source§

impl<Dtype, T> HasTensorShapeData<Dtype> for T
where T: HasTensorShape + HasTensorData<Dtype>,