Struct fera_graph::sets::FastVecSet [] [src]

pub struct FastVecSet<T, P> where
    P: IndexMut<T, Output = usize>,
    T: Copy
{ /* fields omitted */ }

Methods

impl<T, P> FastVecSet<T, P> where
    P: IndexMut<T, Output = usize>,
    T: Copy
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl FastVecSet<usize, Vec<usize>>
[src]

[src]

[src]

Trait Implementations

impl<T, P> IntoIterator for FastVecSet<T, P> where
    P: IndexMut<T, Output = usize>,
    T: Copy
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<'a, T, P> IntoIterator for &'a FastVecSet<T, P> where
    P: IndexMut<T, Output = usize>,
    T: Copy
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<'a, T, P> Extend<T> for FastVecSet<T, P> where
    P: IndexMut<T, Output = usize>,
    T: Copy
[src]

[src]

Extends a collection with the contents of an iterator. Read more