Sign in
fuchsia
/
third_party
/
github.com
/
petgraph
/
petgraph
/
5c8ab669a8618059f20989660e8423e97ac905af
/
.
/
crates
/
algorithms
/
src
/
common.rs
blob: 36fa4f3c3299fc9c7645da9883d1da0a25f25b5c [
file
] [
log
] [
blame
]
use
fxhash
::
FxBuildHasher
;
pub
(
crate
)
type
IndexMap
<
K
,
V
>
=
indexmap
::
IndexMap
<
K
,
V
,
FxBuildHasher
>;
pub
(
crate
)
type
IndexSet
<
K
>
=
indexmap
::
IndexSet
<
K
,
FxBuildHasher
>;