You can search for identifiers within the package.
in-package search v0.2.0
ez_hash
EzHex.Hex
type t = string
val compare : t -> t -> int
val equal : t -> t -> bool
val encode : string -> t
encode s converts a string to a lowercase hexadecimal notation
encode s
val encodeU : string -> t
encodeU s converts a string to an uppercase hexadecimal notation
encodeU s
val decode : t -> string
decode hex converts a string in hexadecimal notation into its corresponding decoded string. Can raise Invalid_argument.
decode hex
val encode_bytes : bytes -> t
val encodeU_bytes : bytes -> t
val decode_bytes : t -> bytes