Macro impl_graph_basics_wrapper
Source macro_rules! impl_graph_basics_wrapper {
(
$graph:ty,
$inner_g:ty,
$dir:literal,
$(, <$($gens:tt),*>)?
$(, |$(const $cgens:ident: $ity:ty),*|)?
) => { ... };
(
$graph:ty,
$inner_g:ty,
$dir:literal,
reduce E = $edge_weight:tt
$(, <$($gens:tt),*>)?
$(, |$(const $cgens:ident: $ity:ty),*|)?
) => { ... };
(
$graph:ty,
$inner_g:ty,
$dir:literal,
reduce N = $node_weight:tt
$(, <$($gens:tt),*>)?
$(, |$(const $cgens:ident: $ity:ty),*|)?
) => { ... };
(
$graph:ty,
$inner_g:ty,
$dir:literal
$(, <$($gens:tt),*>)?
$(, |$(const $cgens:ident: $ity:ty),*|)?
) => { ... };
}