Up

module Float_robust_compare

: sig
#
module type S = sig
#
val robust_comparison_tolerance : float
include Robustly_comparable.S with type t := float
end
#
module Make : functor (T : sig
#
val robust_comparison_tolerance : float
end
) -> S
end