We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07cfdb0 commit 9f8c2efCopy full SHA for 9f8c2ef
src/core/CCFun.mli
@@ -8,11 +8,13 @@ include module type of Fun
8
val and_pred : ('a -> bool) -> ('a -> bool) -> 'a -> bool
9
(** [and_p f g x] is [(f x) && (g x)].
10
Produces a predicate which is a conjunction of the two predicates.
11
+ @since NEXT_RELEASE
12
*)
13
14
val or_pred : ('a -> bool) -> ('a -> bool) -> 'a -> bool
15
(** [or_p f g x] is [(f x) || (g x)].
16
Produces a predicate which is a disjunction of the two predicates.
17
18
19
20
val compose : ('a -> 'b) -> ('b -> 'c) -> 'a -> 'c
0 commit comments