Parameter F.1-Hash
val fold_int : state -> int -> state
fold_<T> state v
incorporates a valuev
of type <T> into the hash-state, returning a modified hash-state. Implementations of thefold_<T>
functions may mutate thestate
argument in place, and return a reference to it. Implementations of the fold_<T> functions should not allocate.
val fold_int64 : state -> int64 -> state
val fold_float : state -> float -> state
val fold_string : state -> string -> state
val alloc : unit -> state
alloc ()
returns a fresh uninitialized hash-state. May allocate.
val reset : ?seed:seed -> state -> state
reset ?seed state
initializes/resets a hash-state with the givenseed
, or else a default-seed. Argumentstate
may be mutated. Should not allocate.
val get_hash_value : state -> hash_value
get_hash_value
extracts a hash-value from the hash-state.
module For_tests : sig ... end