diff options
author | Gabriel Scherer <gabriel.scherer@gmail.com> | 2014-12-21 11:46:08 +0000 |
---|---|---|
committer | Gabriel Scherer <gabriel.scherer@gmail.com> | 2014-12-21 11:46:08 +0000 |
commit | 85b75d7963febd9f31a3fbf52a7846ee28c429e7 (patch) | |
tree | e33475baa95a388ff036a13f8a0c590b95f0fcb3 /stdlib/digest.mli | |
parent | c7d7103646aa5078d326a78c3d0f51709d38f579 (diff) |
PR#6494: Add equal function in modules Big_int, Bytes, Char, Digest, Int32, Int64, Nativeint, Num and String
(Romain Calascibetta)
From: Romain Calascibetta <romain.calascibetta@gmail.com>
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@15725 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib/digest.mli')
-rw-r--r-- | stdlib/digest.mli | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/stdlib/digest.mli b/stdlib/digest.mli index 9227cd7de..29e5b3973 100644 --- a/stdlib/digest.mli +++ b/stdlib/digest.mli @@ -33,6 +33,10 @@ val compare : t -> t -> int argument to the functors {!Set.Make} and {!Map.Make}. @since 4.00.0 *) +val equal : t -> t -> bool +(** The equal function for 16-character digest. + @since 4.03.0 *) + val string : string -> t (** Return the digest of the given string. *) |