package bastet

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Parameters

Signature

type 'a t = 'a option
and 'a applicative_t = 'a A.t
include Interface.FUNCTOR with type 'a t := 'a t
val map : ('a -> 'b) -> 'a t -> 'b t
include Interface.FOLDABLE with type 'a t := 'a t
val fold_left : ('a -> 'b -> 'a) -> 'a -> 'b t -> 'a
val fold_right : ('b -> 'a -> 'a) -> 'a -> 'b t -> 'a
module Fold_Map (M : Interface.MONOID) : sig ... end
module Fold_Map_Any (M : Interface.MONOID_ANY) : sig ... end
module Fold_Map_Plus (P : Interface.PLUS) : sig ... end
val traverse : ('a -> 'b A.t) -> 'c option -> 'd option A.t
val sequence : 'a A.t option -> 'b option A.t