Struct tract_hir::prelude::tract_itertools::Groups[][src]

#[must_use = "iterator adaptors are lazy and do nothing unless consumed"]pub struct Groups<'a, K, I, F> where
    I: 'a + Iterator,
    K: 'a,
    F: 'a,
    <I as Iterator>::Item: 'a, 
{ /* fields omitted */ }

An iterator that yields the Group iterators.

Iterator element type is (K, Group): the group’s key K and the group’s iterator.

See .group_by() for more information.

Trait Implementations

impl<'a, K, I, F> Iterator for Groups<'a, K, I, F> where
    I: Iterator,
    K: PartialEq<K>,
    F: FnMut(&<I as Iterator>::Item) -> K,
    <I as Iterator>::Item: 'a, 
[src]

type Item = (K, Group<'a, K, I, F>)

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, K, I, F> !RefUnwindSafe for Groups<'a, K, I, F>

impl<'a, K, I, F> !Send for Groups<'a, K, I, F>

impl<'a, K, I, F> !Sync for Groups<'a, K, I, F>

impl<'a, K, I, F> Unpin for Groups<'a, K, I, F>

impl<'a, K, I, F> !UnwindSafe for Groups<'a, K, I, F>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> Itertools for T where
    T: Iterator + ?Sized
[src]

impl<T> Itertools for T where
    T: Iterator + ?Sized
[src]

impl<D, A, I> MaybeProduct<D> for I where
    I: Iterator<Item = A>,
    A: Borrow<D>,
    D: DimLike

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.