identityHash64Of

Dummy-hash for benchmarking performance of HashSet.

@safe nothrow pure @nogc @nogc
ulong
identityHash64Of
(
in ulong x
)

Examples

assert(identityHash64Of(-1) == ulong.max);
assert(identityHash64Of(int.max) == int.max);
assert(identityHash64Of(ulong.max) == ulong.max);

Meta