You can search for identifiers within the package.
in-package search v0.2.0
type 'a t = 'a Core.t
The type held by the Comonad.
Comonad
val let@ : 'a t -> ('a t -> 'b) -> 'b t
Syntactic shortcuts for version of CORE.extend:
CORE.extend
let@ x = e in f is equals to extend f e.
let@ x = e in f
extend f e
val let+ : 'a t -> ('a -> 'b) -> 'b t
Syntactic shortcuts for version of CORE.map
CORE.map