[][src]Struct hashed_permutation::HashedIter

pub struct HashedIter { /* fields omitted */ }

An iterator that allows you to iterate over a sequence of permuted numbers with O(1) space.

Implementations

impl HashedIter[src]

The iterator version of the hashed permutation algorithm

This allows you to use an iterator as you would normally.

use std::num::NonZeroU32;

let mut iterator = HashedIter::new_with_seed(NonZeroU32::new(5).unwrap(), 100);

for i in iterator {
    println!("{}", i);
}

pub fn new_with_seed(length: NonZeroU32, seed: u32) -> Self[src]

Create a new hashed iterator with a given length and a seed value

Trait Implementations

impl Iterator for HashedIter[src]

type Item = u32

The type of the elements being iterated over.

Auto Trait Implementations

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