chore: add since NEXT_RELEASE

This commit is contained in:
Nicola Mometto 2024-04-11 14:55:16 +01:00
parent 6a70c57253
commit 71233f2c1a

View file

@ -83,10 +83,12 @@ module Infix : sig
@since 3.11 *)
val ( ||> ) : 'a * 'b -> ('a -> 'b -> 'c) -> 'c
(** [x ||> f] is [f (fst x) (snd x)] *)
(** [x ||> f] is [f (fst x) (snd x)]
@since NEXT_RELEASE *)
val ( |||> ) : 'a * 'b * 'c -> ('a -> 'b -> 'c -> 'd) -> 'd
(** like [||>] but for tuples of size 3 *)
(** like [||>] but for tuples of size 3
@since NEXT_RELEASE *)
end
include module type of Infix