Type Definition petgraph::csr::NodeIndex[][src]

type NodeIndex<Ix = DefaultIx> = Ix;

Csr node index type, a plain integer.

Trait Implementations

impl<N, E, Ty, Ix> Index<NodeIndex<Ix>> for Csr<N, E, Ty, Ix> where
    Ty: EdgeType,
    Ix: IndexType
[src]

The returned type after indexing.

Performs the indexing (container[index]) operation.

impl<N, E, Ty, Ix> IndexMut<NodeIndex<Ix>> for Csr<N, E, Ty, Ix> where
    Ty: EdgeType,
    Ix: IndexType
[src]

Performs the mutable indexing (container[index]) operation.