Skip to content

Instantly share code, notes, and snippets.

@akabe
Last active September 4, 2019 01:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akabe/1d0aa864fd6e8f72b368b5c53ecc99f8 to your computer and use it in GitHub Desktop.
Save akabe/1d0aa864fd6e8f72b368b5c53ecc99f8 to your computer and use it in GitHub Desktop.
Extensible record by Lens trick in OCaml
(** 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