Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust-analyzer
/
520054681ab50fa3c6c5cf9fb638ef8c0db3fd24
/
.
/
crates
/
ra-salsa
/
src
/
hash.rs
blob: 3b2d7df3fbeaac97d2638ebf3fde7e6c2fdeec6b [
file
] [
log
] [
blame
]
pub
(
crate
)
type
FxHasher
=
std
::
hash
::
BuildHasherDefault
<
rustc_hash
::
FxHasher
>;
pub
(
crate
)
type
FxIndexSet
<
K
>
=
indexmap
::
IndexSet
<
K
,
FxHasher
>;
pub
(
crate
)
type
FxIndexMap
<
K
,
V
>
=
indexmap
::
IndexMap
<
K
,
V
,
FxHasher
>;