From: Dario Teixeira <darioteixeira@yahoo.com>
To: caml-list@yquem.inria.fr
Subject: Emulating width subtyping with 1st-class modules
Date: Thu, 5 Aug 2010 08:02:14 -0700 (PDT) [thread overview]
Message-ID: <607998.18398.qm@web111514.mail.gq1.yahoo.com> (raw)
Hi,
I have a problem where some form of width subtyping for records would be
useful. At the present I'm taking advantage of the structural subtyping nature
of Ocaml's object system to emulate the width subtyping. This works and is
reasonably compact, but I'm still open to other approaches. It has occurred
to me that 3.12's modules-as-first-class-values provide yet another solution:
module type BRIEF =
sig
val a: int
val b: string
end
module type FULL =
sig
include BRIEF
val c: float
end
let print_brief m =
let module M = (val m: BRIEF) in
Printf.printf "A: %d, B: %s\n" M.a M.b
let print_full m =
let module M = (val m: FULL) in
Printf.printf "A: %d, B: %s, C: %f\n" M.a M.b M.c
module Full =
struct
let a = 1
let b = "full"
let c = 0.5
end
module Brief =
struct
let a = 0
let b = "short"
end
let () =
print_brief (module Brief : BRIEF);
print_brief (module Full : BRIEF);
print_full (module Full : FULL)
While this approach seems awfully verbose, I reckon it could be made much
more palatable via some Camlp4 sugaring. Nevertheless, I have a question:
just how heavy would this approach be when compared to the object one?
And how would it fare in comparison to regular records?
Thanks for your attention!
Best regards,
Dario Teixeira
next reply other threads:[~2010-08-05 15:02 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-05 15:02 Dario Teixeira [this message]
2010-08-05 16:10 ` [Caml-list] " Philippe Veber
2010-08-05 16:17 ` Alain Frisch
2010-08-05 16:35 ` Alain Frisch
2010-08-05 19:02 ` Dario Teixeira
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=607998.18398.qm@web111514.mail.gq1.yahoo.com \
--to=darioteixeira@yahoo.com \
--cc=caml-list@yquem.inria.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox