package checkseum

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = Optint.t

Representation of the checksum value.

val pp : Format.formatter -> t -> unit

Pretty-printer of t.

val equal : t -> t -> bool

The equal function of t.

val default : t

Default value of t.

val digest_bytes : Bytes.t -> int -> int -> t -> t

digest_bytes msg off len t is the digest of msg at off on len byte(s).

val digest_string : String.t -> int -> int -> t -> t

Same as digest_bytes but for String.t.

val digest_bigstring : bigstring -> int -> int -> t -> t

Same as digest_bigstring but for bigstring.