mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2026-05-05 08:54:22 -04:00
doc
This commit is contained in:
parent
31eb8d163f
commit
0584b8c890
1 changed files with 5 additions and 3 deletions
|
|
@ -1,8 +1,8 @@
|
|||
(** Hash combinators with 64-bit state threading.
|
||||
|
||||
State is threaded explicitly as a private [int64] through combinators,
|
||||
preserving full 64-bit quality throughout. Finalize with {!finalize} (returns
|
||||
a positive [int]) or {!finalize64} (returns the raw [int64]).
|
||||
State is threaded explicitly as a private [int64] through combinators.
|
||||
Finalize with {!finalize} (returns a positive [int]) or {!finalize64}
|
||||
(returns the raw [int64]).
|
||||
|
||||
Typical use:
|
||||
{[
|
||||
|
|
@ -15,6 +15,8 @@
|
|||
|
||||
{b Implementation}: xorshift+multiply combiner with fmix64 (Murmur3)
|
||||
finalizer, via C stubs. Unboxed in native code.
|
||||
|
||||
@since NEXT_RELEASE
|
||||
*)
|
||||
|
||||
type state = private int64
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue