package preface

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

Module Monad.Syntax

val (let*) : ('a, 'index) t -> ('a -> ('b, 'index) t) -> ('b, 'index) t

Syntactic shortcuts for flipped version of CORE.bind:

let* x = e in f is equals to bind (fun x -> f) e.

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

let operator for mapping.

OCaml

Innovation. Community. Security.