package zarr-sync

  1. Overview
  2. Docs

Source file deferred.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
type 'a t = 'a
let return x = x
let return_unit = ()
let iter = List.iter
let fold_left = List.fold_left
let concat_map = List.concat_map

module Infix = struct
  let (>>=) x f = f x
  let (>>|) = (>>=)
end

module Syntax = struct
  let (let*) x f = f x
  let (let+) = (let*)
end
OCaml

Innovation. Community. Security.