[][src]Trait teia::traits::ChainGeneratorBoundary

pub trait ChainGeneratorBoundary<'a, ChGen> where
    ChGen: ChainGenerator + Sized
{ type BoundaryIter: Iterator<Item = ChGen>; fn boundary(&'a self) -> Self::BoundaryIter; }

Associated Types

type BoundaryIter: Iterator<Item = ChGen>

Loading content...

Required methods

fn boundary(&'a self) -> Self::BoundaryIter

Loading content...

Implementors

impl<'a> ChainGeneratorBoundary<'a, Simplex> for Simplex[src]

type BoundaryIter = Boundary<'a>

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

Returns an iteratro that produces the faces of the boundary of self.

Loading content...