Sign in
android
/
platform
/
external
/
rust
/
cxx
/
10570477
/
.
/
src
/
hash.rs
blob: ee349b405094a064205d302ab51d3c3091d74571 [
file
] [
log
] [
blame
]
use
core
::
hash
::{
BuildHasher
as
_
,
Hash
};
#[
doc
(
hidden
)]
pub
fn
hash
<
V
:
Hash
>(
value
:
&
V
)
->
usize
{
foldhash
::
quality
::
FixedState
::
default
().
hash_one
(
value
)
as
usize
}