package spotlib

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

Module type Monad_intf.Syntax1Source

syntax for S1

type +'a t
val (let*) : 'a t -> ('a -> 'b t) -> 'b t

synonym of bind

val (let+) : 'a t -> ('a -> 'b) -> 'b t

synonum of fmap, with the flipped arguments

val (and*) : 'a t -> 'b t -> ('a * 'b) t
val (and+) : 'a t -> 'b t -> ('a * 'b) t