This commit is contained in:
Simon Cruanes 2020-11-05 12:05:31 -05:00
parent 7e160106c5
commit 26df938968
2 changed files with 3 additions and 2 deletions

View file

@ -808,7 +808,7 @@ val of_gen : 'a gen -> 'a t
In the result, elements appear in the same order as they did in the source [gen]. *)
(** {2 Infix Operators}
It is convenient to {!open CCList.Infix} to access the infix operators
It is convenient to [open] {!CCList.Infix} to access the infix operators
without cluttering the scope too much.
@since 0.16 *)

View file

@ -114,6 +114,7 @@ let shims_array_label_post_408 = "
let shims_let_op_pre_408 =
"
(** glue code for let-operators on OCaml >= 4.08 (auto generated) *)
module type S = sig type 'a t_let end
module Make(X:sig type 'a t end) = struct type 'a t_let = 'a X.t end
@ -121,7 +122,7 @@ let shims_let_op_pre_408 =
module Make2(X:sig type ('a,'b) t end) = struct type ('a,'b) t_let2 = ('a,'b) X.t end
"
let shims_let_op_post_408 =
"
" (** glue code for let-operators on OCaml >= 4.08 (auto generated) *)
module type S = sig
type 'a t_let
val (let+) : 'a t_let -> ('a -> 'b) -> 'b t_let