Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Adler-32 checksums.
type t = uint32
The type for Adler-32 checksums.
check ~expect ~found
is Ok ()
iff equal exp found
is true
otherwise it errors with a human error message that mentions the checksums.
val pp : Format.formatter -> t -> unit
pp
formats a checksum.
val string : ?start:int -> ?len:int -> string -> t
string s
is the Adler-32 checksum of s
in the range [start
;start+len-1
]. start
defaults to 0
and length
defaults to String.length b - start
.