package pythonlib

  1. Overview
  2. Docs
include module type of struct include Defunc end
type _ t = _ Defunc.t
module Of_python = Defunc.Of_python
include Base.Applicative.S with type 'a t := '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

val (<*) : 'a t -> unit t -> 'a t
val (*>) : unit t -> 'a t -> 'a t
val (>>|) : 'a t -> ('a -> 'b) -> '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 = Defunc.Applicative_infix
include Base.Applicative.Let_syntax with type 'a t := 'a t
module Open_on_rhs_intf = Defunc.Open_on_rhs_intf
module Let_syntax = Defunc.Let_syntax
val params_docstring : ?docstring:Base.string -> 'a t -> Base.string
val no_arg : (Base.unit -> 'a) -> 'a t
module Param = Defunc.Param
module Open_on_rhs = Defunc.Param