add missing @since tags

This commit is contained in:
Simon Cruanes 2024-09-03 13:12:12 -04:00
parent 07cfdb0d94
commit 9f8c2efe64
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4

View file

@ -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