From 7821e8e259171cd4ae71244e244f8be0cfad96e9 Mon Sep 17 00:00:00 2001 From: Fardale Date: Thu, 5 Mar 2020 19:38:30 +0100 Subject: [PATCH] clean(Int32): remove functions defined in Stdlib --- src/core/CCInt32.ml | 2 -- src/core/CCInt32.mli | 4 ---- 2 files changed, 6 deletions(-) diff --git a/src/core/CCInt32.ml b/src/core/CCInt32.ml index 1be2d6d3..dbe198db 100644 --- a/src/core/CCInt32.ml +++ b/src/core/CCInt32.ml @@ -3,8 +3,6 @@ open CCShims_ include Int32 -let equal (x:t) y = Stdlib.(=) x y - module Infix = struct let (+) = add diff --git a/src/core/CCInt32.mli b/src/core/CCInt32.mli index 79eb9292..b355496b 100644 --- a/src/core/CCInt32.mli +++ b/src/core/CCInt32.mli @@ -92,10 +92,6 @@ end include module type of Infix -val equal : t -> t -> bool -(** The equal function for 32-bit integers. - Like {!Pervasives.(=) x y)}. *) - val hash : t -> int (** Like {!Pervasives.abs (to_int x)}. *)