package ocaml-basics

  1. Overview
  2. Docs

Module Make.InfixSource

include module type of Monad.Infix
Sourceval (>>=) : ('a, 'b) t -> ('a -> ('c, 'b) t) -> ('c, 'b) t
include module type of Applicative.Infix
Sourceval (<$>) : ('a -> 'b) -> ('a, 'c) t -> ('b, 'c) t
Sourceval (>>|) : ('a, 'c) t -> ('a -> 'b) -> ('b, 'c) t
Sourceval (<*>) : ('a -> 'b, 'c) t -> ('a, 'c) t -> ('b, 'c) t