[][src]Trait teia::traits::ChainGeneratorVertices

pub trait ChainGeneratorVertices<'a> {
    type VerticesIter: Iterator<Item = &'a usize>;
    fn vertices(&'a self) -> Self::VerticesIter;
}

Associated Types

type VerticesIter: Iterator<Item = &'a usize>

Loading content...

Required methods

fn vertices(&'a self) -> Self::VerticesIter

Loading content...

Implementors

impl<'a> ChainGeneratorVertices<'a> for Simplex[src]

type VerticesIter = Vertices<'a>

Important traits for Vertices<'a>
fn vertices(&'a self) -> Vertices<'a>[src]

Returns an iterator that produces the vertices of self.

Loading content...