You can search for identifiers within the package.
in-package search v0.2.0
include Core.Applicative.S
type 'a t
val return : 'a -> 'a t
val map : 'a t -> f:('a -> 'b) -> 'b t
val both : 'a t -> 'b t -> ('a * 'b) t
val (<*>) : ('a -> 'b) t -> 'a t -> 'b t
same as apply
apply
val (<*) : 'a t -> unit t -> 'a t
val (*>) : unit t -> 'a t -> 'a t
val (>>|) : 'a t -> ('a -> 'b) -> 'b t
val apply : ('a -> 'b) t -> 'a t -> 'b t
val map2 : 'a t -> 'b t -> f:('a -> 'b -> 'c) -> 'c t
val map3 : 'a t -> 'b t -> 'c t -> f:('a -> 'b -> 'c -> 'd) -> 'd t
val all : 'a t list -> 'a list t
val all_unit : unit t list -> unit t
module Applicative_infix : sig ... end
type 'a default =
| Safe_last of 'a
| V of 'a
| Last
| Unsafe
exception Sd_not_found of string * int
val dependencies : 'a t -> int Core.Map.M(Sd.Packed).t
val execute : 'a t -> Rsh.t -> 'a
module Let_syntax : sig ... end