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/nativeint.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/nativeint.mli')
-rw-r--r-- | stdlib/nativeint.mli | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/stdlib/nativeint.mli b/stdlib/nativeint.mli index 3dce1b6c4..ffa57030c 100644 --- a/stdlib/nativeint.mli +++ b/stdlib/nativeint.mli @@ -171,6 +171,10 @@ val compare: t -> t -> int allows the module [Nativeint] to be passed as argument to the functors {!Set.Make} and {!Map.Make}. *) +val equal: t -> t -> bool +(** The equal function for natives ints. + @since 4.03.0 *) + (**/**) (** {6 Deprecated functions} *) |