Home
last modified time | relevance | path

Searched defs:MatrixGraph (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/petgraph/src/
Dmatrix_graph.rs208 pub struct MatrixGraph<N, E, Ty = Directed, Null: Nullable<Wrapped = E> = Option<E>, Ix = DefaultIx> struct
218 /// A `MatrixGraph` with directed edges. argument
224 impl<N, E, Ty: EdgeType, Null: Nullable<Wrapped = E>, Ix: IndexType>
527 impl<N, E, Null: Nullable<Wrapped = E>, Ix: IndexType> MatrixGraph<N, E, Directed, Null, Ix> { implementation
1016 impl<N, E, Ty: EdgeType, Null: Nullable<Wrapped = E>, Ix: IndexType> Default
1024 impl<N, E> MatrixGraph<N, E, Directed> { impl
1034 impl<N, E> MatrixGraph<N, E, Undirected> { implementation
1047 impl<N, E, Ty: EdgeType, Null: Nullable<Wrapped = E>, Ix: IndexType> Index<NodeIndex<Ix>>
1060 impl<N, E, Ty: EdgeType, Null: Nullable<Wrapped = E>, Ix: IndexType> IndexMut<NodeIndex<Ix>>
1068 impl<N, E, Ty: EdgeType, Null: Nullable<Wrapped = E>, Ix: IndexType> NodeCount
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/petgraph/benches/
Dmatrix_graph.rs154 fn parse_matrix<Ty: EdgeType>(s: &str) -> MatrixGraph<(), (), Ty> { in parse_matrix()