[][src]Trait math::traits::ToIterator

pub trait ToIterator<'s, I: Iterator<Item = R>, R> {
    pub fn to_iter(&'s self) -> I;
}

Required methods

pub fn to_iter(&'s self) -> I[src]

Loading content...

Implementations on Foreign Types

impl<'a, E> ToIterator<'a, Iter<'a, E>, &'a E> for Vec<E>[src]

Loading content...

Implementors

impl<'a, Dtype> ToIterator<'a, TensorIter<'a, Dtype>, Dtype> for EphemeralView<'a, Dtype> where
    Dtype: Copy
[src]

impl<'a, Dtype> ToIterator<'a, TensorIter<'a, Dtype>, Dtype> for Tensor<Dtype> where
    Dtype: Copy
[src]

impl<'a, T> ToIterator<'a, HistogramIter<'a, T>, (T, T, usize)> for Histogram<T> where
    T: PartialOrd + NumAssign + NumOps + FromPrimitive + ToPrimitive + Copy + Display
[src]

impl<E: Integer + Copy + ToPrimitive> ToIterator<'_, IntegerSetIter<E>, E> for OrderedIntegerSet<E>[src]

impl<E: Integer + Copy> ToIterator<'_, ContiguousIntegerSetIter<E>, E> for ContiguousIntegerSet<E>[src]

Loading content...