From 9f8c2efe6442a740719653ffa96f38841a4c2284 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Tue, 3 Sep 2024 13:12:12 -0400 Subject: [PATCH] add missing @since tags --- src/core/CCFun.mli | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/CCFun.mli b/src/core/CCFun.mli index 1c20937b..58c4aacc 100644 --- a/src/core/CCFun.mli +++ b/src/core/CCFun.mli @@ -8,11 +8,13 @@ include module type of Fun val and_pred : ('a -> bool) -> ('a -> bool) -> 'a -> bool (** [and_p f g x] is [(f x) && (g x)]. Produces a predicate which is a conjunction of the two predicates. + @since NEXT_RELEASE *) val or_pred : ('a -> bool) -> ('a -> bool) -> 'a -> bool (** [or_p f g x] is [(f x) || (g x)]. Produces a predicate which is a disjunction of the two predicates. + @since NEXT_RELEASE *) val compose : ('a -> 'b) -> ('b -> 'c) -> 'a -> 'c