package oseq

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val (--) : int -> int -> int t
val (--^) : int -> int -> int t
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t

Monadic bind operator

val (>>|) : 'a t -> ('a -> 'b) -> 'b t

Infix map operator

val (>|=) : 'a t -> ('a -> 'b) -> 'b t

Infix map operator

val (<*>) : ('a -> 'b) t -> 'a t -> 'b t