From 4f0e2190368aef02d66a14f46eeb83d29ff7e879 Mon Sep 17 00:00:00 2001 From: Fardale Date: Thu, 5 Mar 2020 19:38:50 +0100 Subject: [PATCH] clean(Int64): remove functions defined in Stdlib --- src/core/CCInt64.ml | 2 -- src/core/CCInt64.mli | 4 ---- 2 files changed, 6 deletions(-) diff --git a/src/core/CCInt64.ml b/src/core/CCInt64.ml index b2dbad44..4387dc97 100644 --- a/src/core/CCInt64.ml +++ b/src/core/CCInt64.ml @@ -3,8 +3,6 @@ open CCShims_ include Int64 -let equal (x:t) y = Stdlib.(=) x y - module Infix = struct let (+) = add diff --git a/src/core/CCInt64.mli b/src/core/CCInt64.mli index 44de9fe0..86acdaa7 100644 --- a/src/core/CCInt64.mli +++ b/src/core/CCInt64.mli @@ -92,10 +92,6 @@ end include module type of Infix -val equal : t -> t -> bool -(** The equal function for 64-bit integers. - Like {!Pervasives.(=) x y)}. *) - val compare : t -> t -> int (** The comparison function for 64-bit integers, with the same specification as {!Pervasives.compare}. Along with the type [t], this function [compare]