Searched defs:MatrixGraph (Results 1 – 2 of 2) sorted by relevance
/aosp_15_r20/external/rust/android-crates-io/crates/petgraph/src/ |
D | matrix_graph.rs | 208 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/ |
D | matrix_graph.rs | 154 fn parse_matrix<Ty: EdgeType>(s: &str) -> MatrixGraph<(), (), Ty> { in parse_matrix()
|