Source file free_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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
module Via_map (F : Preface_specs.Functor.CORE) = struct
type 'a f = 'a F.t
type 'a t =
| Return of 'a
| Bind of 'a t f
let perform f = Bind (F.map (fun a -> Return a) f)
module To_monad (Monad : Preface_specs.Monad.CORE) = struct
type natural_transformation = { transform : 'a. 'a f -> 'a Monad.t }
let rec run transformation = function
| Return a -> Monad.return a
| Bind g -> Monad.bind (run transformation) (transformation.transform g)
;;
end
let run f =
let rec loop_run = function
| Return a -> a
| Bind g -> f (F.map loop_run g)
in
loop_run
;;
let rec map f = function
| Return v -> Return (f v)
| Bind f' -> Bind (F.map (map f) f')
;;
module Functor = Functor.Via_map (struct
type nonrec 'a t = 'a t
let map = map
end)
module Applicative = Applicative.Via_pure_and_apply (struct
type nonrec 'a t = 'a t
let pure a = Return a
let rec apply f a =
match f with
| Return f' -> map f' a
| Bind f' -> Bind (F.map (fun f -> apply f a) f')
;;
end)
module Monad = Monad.Via_return_and_bind (struct
type nonrec 'a t = 'a t
let return a = Return a
let rec bind f = function
| Return a -> f a
| Bind a -> Bind (F.map (bind f) a)
;;
end)
module Selective =
Selective.Over_applicative_via_select
(Applicative)
(Selective.Select_from_monad (Monad))
include (Monad : Preface_specs.MONAD with type 'a t := 'a t)
end
module Over_functor (A : Preface_specs.FUNCTOR) = Via_map (A)
module Over_applicative (A : Preface_specs.APPLICATIVE) = Via_map (A)
module Over_selective (A : Preface_specs.SELECTIVE) = Via_map (A)
module Over_monad (A : Preface_specs.MONAD) = Via_map (A)