From: "Daniel Bünzli" <daniel.buenzli@erratique.ch>
To: Caml-list <caml-list@inria.fr>
Subject: Re: [Caml-list] Phantom types and variants
Date: Fri, 22 Aug 2014 04:17:33 +0100 [thread overview]
Message-ID: <83ADBE14262643EA9519BBE719987901@erratique.ch> (raw)
In-Reply-To: <4060AF3441F149839C46804E64E2B9CE@erratique.ch>
Sorry the coerce function type was wrong in my preceding message. Here is the example:
-----
module M : sig
type kind = [ `A | `B ]
type +'a t constraint 'a = [< kind ]
val a : unit -> [> `A] t
val b : unit -> [> `B] t
val coerce : ([< kind] as 'a) -> 'b t -> 'a t
end = struct
type kind = [ `A | `B ]
type +'a t =
{ kind : kind }
constraint 'a = [< kind]
let a () = { kind = `A }
let b () = { kind = `B }
let coerce k v = if v.kind <> k then invalid_arg "" else v
end
let (vl : [`A | `B ] M.t list) = [M.a (); M.b ()]
let (v : [`A] M.t) = M.coerce `A (List.hd vl)
------
and the error:
Values do not match:
val coerce : kind -> ([< kind ] as 'a) t -> 'a t
is not included in
val coerce : ([< kind ] as 'a) -> [< kind ] t -> 'a t
next prev parent reply other threads:[~2014-08-22 3:17 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-22 3:11 Daniel Bünzli
2014-08-22 3:17 ` Daniel Bünzli [this message]
2014-08-22 19:49 ` Philippe Veber
2014-08-23 15:06 ` Daniel Bünzli
2014-08-23 15:40 ` Jeremy Yallop
2014-08-23 15:48 ` Daniel Bünzli
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=83ADBE14262643EA9519BBE719987901@erratique.ch \
--to=daniel.buenzli@erratique.ch \
--cc=caml-list@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