Source file free_applicative.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
open Preface_core.Fun
module Over_functor (F : Preface_specs.Functor.CORE) :
Preface_specs.FREE_APPLICATIVE with type 'a f = 'a F.t =
struct
type 'a f = 'a F.t
type _ t =
| Pure : 'a -> 'a t
| Apply : ('a -> 'b) t * 'a f -> 'b t
let promote x = Apply (Pure id, x)
module Core = struct
type nonrec 'a t = 'a t
let pure x = Pure x
let rec map : type a b. (a -> b) -> a t -> b t =
fun f -> function
| Pure x -> Pure (f x)
| Apply (fa, x) ->
let fs = map (fun g x -> f (g x)) fa in
Apply (fs, x)
;;
let rec apply : type a b. (a -> b) t -> a t -> b t =
fun fs xs ->
match fs with
| Pure f -> map f xs
| Apply (fa, x) ->
let gs =
let left = map flip fa in
apply left xs
in
Apply (gs, x)
;;
let product a b = apply (apply (Pure (fun x y -> (x, y))) a) b
let lift2 f x y = apply (map f x) y
end
module Operation = Applicative.Operation (Core)
module A =
Applicative.Via (Core) (Operation) (Applicative.Infix (Core) (Operation))
(Applicative.Syntax (Core))
module To_applicative (Applicative : Preface_specs.Applicative.CORE) = struct
type natural_transformation = { transform : 'a. 'a f -> 'a Applicative.t }
let rec run : type a. natural_transformation -> a t -> a Applicative.t =
fun transformation -> function
| Pure x -> Applicative.pure x
| Apply (fs, x) ->
Applicative.apply (run transformation fs) (transformation.transform x)
;;
end
module To_monoid (Monoid : Preface_specs.Monoid.CORE) = struct
type natural_transformation = { transform : 'a. 'a f -> Monoid.t }
module C = Applicative.Const (Monoid)
module T = To_applicative (C)
let run nt x =
let n =
let transform x = C.Const (nt.transform x) in
let open T in
{ transform }
in
C.get (T.run n x)
;;
end
include (A : Preface_specs.APPLICATIVE with type 'a t := 'a t)
end
module Over_applicative (A : Preface_specs.Applicative.CORE) = struct
include Over_functor (A)
module R = To_applicative (A)
let run x =
let t = R.{ transform = id } in
R.run t x
;;
end