mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 11:15:31 -05:00
attempt to fix tests
This commit is contained in:
parent
2c96dd1b55
commit
0de515b94b
1 changed files with 7 additions and 7 deletions
|
|
@ -21,15 +21,15 @@ let to_int = Char.code
|
||||||
let to_string c = String.make 1 c
|
let to_string c = String.make 1 c
|
||||||
|
|
||||||
(*$Q to_string
|
(*$Q to_string
|
||||||
(Q.string_of_size (Q.Gen.return 1)) (fun s -> Stdlib.(=) (to_string s.[0]) s)
|
(Q.string_of_size (Q.Gen.return 1)) (fun s -> CCShims_.Stdlib.(=) (to_string s.[0]) s)
|
||||||
*)
|
*)
|
||||||
|
|
||||||
module Infix = struct
|
module Infix = struct
|
||||||
let (=) : t -> t -> bool = Stdlib.(=)
|
let (=) : t -> t -> bool = CCShims_.Stdlib.(=)
|
||||||
let (<>) : t -> t -> bool = Stdlib.(<>)
|
let (<>) : t -> t -> bool = CCShims_.Stdlib.(<>)
|
||||||
let (<) : t -> t -> bool = Stdlib.(<)
|
let (<) : t -> t -> bool = CCShims_.Stdlib.(<)
|
||||||
let (>) : t -> t -> bool = Stdlib.(>)
|
let (>) : t -> t -> bool = CCShims_.Stdlib.(>)
|
||||||
let (<=) : t -> t -> bool = Stdlib.(<=)
|
let (<=) : t -> t -> bool = CCShims_.Stdlib.(<=)
|
||||||
let (>=) : t -> t -> bool = Stdlib.(>=)
|
let (>=) : t -> t -> bool = CCShims_.Stdlib.(>=)
|
||||||
end
|
end
|
||||||
include Infix
|
include Infix
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue