Last active
September 4, 2019 01:43
-
-
Save akabe/1d0aa864fd6e8f72b368b5c53ecc99f8 to your computer and use it in GitHub Desktop.
Extensible record by Lens trick in OCaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(** The Lens trick: getter and setter for fields *) | |
type ('s, 'v) lens = | |
{ | |
get: 's -> 'v; | |
set: 'v -> 's -> 's; | |
} | |
let id_lens = { | |
get = (fun x -> x); | |
set = (fun v _ -> v); | |
} | |
(** Lens composition: ('c, 'b) lens -> ('a, 'c) lens -> ('a, 'b) lens *) | |
let ($$) k l = | |
let get x = k.get (l.get x) in | |
let set s x = l.set (k.set s (l.get x)) x in | |
{ get; set; } | |
(** As a super type *) | |
module M = struct | |
type t = { foo: int; baz: string; } | |
module F(S: sig type u val super : (u, t) lens end) = struct | |
let foo = { get = (fun x -> x.foo); set = (fun v x -> { x with foo=v }) } $$ S.super | |
let baz = { get = (fun x -> x.baz); set = (fun v x -> { x with baz=v }) } $$ S.super | |
end | |
end | |
(** As a subtype *) | |
module K = struct | |
type t = { super: M.t; hoge: float; } | |
module F(S: sig type u val super : (u, t) lens end) = struct | |
include M.F(struct | |
type u = S.u | |
let super = { | |
get = (fun x -> x.super); | |
set = (fun v x -> { x with super=v }); | |
} $$ S.super | |
end) | |
let hoge = { get = (fun x -> x.hoge); set = (fun v x -> { x with hoge=v }) } $$ S.super | |
end | |
end | |
module KK = K.F(struct type u = K.t let super = id_lens end) | |
(* results in `42' *) | |
let _ = KK.foo.get { K.super = { M.foo = 42; M.baz = "hello" }; K.hoge = 12.34 } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment