From 71233f2c1a4bebe19283c09b8af46c7f4b53791d Mon Sep 17 00:00:00 2001 From: Nicola Mometto Date: Thu, 11 Apr 2024 14:55:16 +0100 Subject: [PATCH] chore: add since NEXT_RELEASE --- src/core/CCFun.mli | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/core/CCFun.mli b/src/core/CCFun.mli index f720a6cb..1557f780 100644 --- a/src/core/CCFun.mli +++ b/src/core/CCFun.mli @@ -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