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

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

Required methods

fn to_iter(&'s self) -> I

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, 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...