ndtensor 0.1.1

An n-dimensional tensor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
    appellation: impl_tensor_deprecated <module>
    authors: @FL03
*/
use crate::tensor::TensorBase;

use ndarray::{Dimension, RawData};

#[doc(hidden)]
impl<A, S, D> TensorBase<S, D>
where
    D: Dimension,
    S: RawData<Elem = A>,
{
}