Source file identity_monad.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
module M : Intf.Core with type 'a t = 'a = struct
  type 'a t = 'a

  let return x = x

  let bind m f = f m

  let map m f = f m

  let map2 m1 m2 f = f m1 m2

  let map_array m f = f m

  let if_ c body = body c

  module Infix = struct
    let ( let* ) = bind

    let ( let+ ) = map

    let ( and+ ) m m' = map2 m m' (fun x y -> (x, y))

    let ( >>= ) = bind

    let ( >|= ) = map

    let return = return
  end
end

include M