caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Jeremy Yallop <yallop@gmail.com>
To: "Daniel Bünzli" <daniel.buenzli@erratique.ch>
Cc: Caml-list <caml-list@inria.fr>
Subject: Re: [Caml-list] Phantom types and variants
Date: Sat, 23 Aug 2014 16:40:17 +0100	[thread overview]
Message-ID: <CAAxsn=GUVUPvSs4_wrgnUaTWXBXgKpMi7LXFGEchZdpPN=vf_w@mail.gmail.com> (raw)
In-Reply-To: <83ADBE14262643EA9519BBE719987901@erratique.ch>

On 22 August 2014 04:17, Daniel Bünzli <daniel.buenzli@erratique.ch> wrote:
> 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

The following definition does the trick (and avoids the allocation):

  let coerce (#kind as k) ({kind} as v) = if v.kind <> k then
invalid_arg "" else v

  parent reply	other threads:[~2014-08-23 15:40 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
2014-08-22 19:49   ` Philippe Veber
2014-08-23 15:06     ` Daniel Bünzli
2014-08-23 15:40   ` Jeremy Yallop [this message]
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='CAAxsn=GUVUPvSs4_wrgnUaTWXBXgKpMi7LXFGEchZdpPN=vf_w@mail.gmail.com' \
    --to=yallop@gmail.com \
    --cc=caml-list@inria.fr \
    --cc=daniel.buenzli@erratique.ch \
    /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;
as well as URLs for NNTP newsgroup(s).