rstsr-core 0.7.3

An n-Dimension Rust Tensor Toolkit
Documentation
1
2
3
4
5
6
//! This module is to declare API for external tensor objects to rstsr object.

pub trait IntoRSTSR {
    type RSTSR;
    fn into_rstsr(self) -> Self::RSTSR;
}