[][src]Trait amethyst_rendy::util::TapCountIter

pub trait TapCountIter {
    type Iter: Iterator;
    fn tap_count<T: PrimInt>(
        self,
        counter: &mut T
    ) -> TapCountIterator<T, Self::Iter>; }

Iterator counting adapter.

Associated Types

type Iter: Iterator

The inner iterator type for this access counter.

Loading content...

Required methods

Important traits for TapCountIterator<'a, T, I>
fn tap_count<T: PrimInt>(
    self,
    counter: &mut T
) -> TapCountIterator<T, Self::Iter>

Implemented for counting iterator access.

Loading content...

Implementors

impl<I: Iterator> TapCountIter for I[src]

type Iter = I

Loading content...