1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! Module containing definitions of tensors and operations on them.
mod tensor;
mod variance;

pub use self::tensor::{
    Covector, InnerProduct, InvTwoForm, Matrix, Scalar, Tensor, TwoForm, Vector,
};
pub use self::variance::{
    Concat, Contract, Contracted, ContravariantIndex, CovariantIndex, IndexType, Joined,
    OtherIndex, TensorIndex, Variance,
};