pub type Result<T> = Result<T, TensorError>;Expand description
Error types and Result alias for the library
A type alias for Result<T, TensorError>.
This is the standard result type used throughout the tensor library.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(TensorError),
}