package numalib

  1. Overview
  2. Docs

Source file io_impl.ml

1
2
3
4
5
6
7
8
type 'a t = 'a

let return v = v
let bind a ~f = f a
let map a ~f  = f a
let (>>=) a f =  f a
let (>>|) a f = f a
let wrap f = f
OCaml

Innovation. Community. Security.