rstsr-common 0.7.3

An n-Dimension Rust Tensor Toolkit
Documentation
1
2
3
4
5
6
7
8
9
/* #region trait for split_at */

pub trait IterSplitAtAPI: Sized {
    // Function that split the iterator at the given index.
    // This is used for parallel iterator.
    fn split_at(self, index: usize) -> (Self, Self);
}

/* #endregion */