acme_tensor/actions/index/mod.rs
1/*
2 Appellation: index <mod>
3 Contrib: FL03 <jo3mccain@icloud.com>
4*/
5//! # Index
6//!
7//!
8pub use self::slice::*;
9
10pub(crate) mod slice;
11
12/// A type alias for an unsigned integer used to index into a tensor.
13pub type Ix = usize;
14/// A type alias for a signed integer used to index into a tensor.
15pub type Ixs = isize;
16
17pub trait TensorIndex {}
18
19#[cfg(test)]
20mod tests {}