caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Philippe Veber <philippe.veber@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: Fri, 22 Aug 2014 21:49:46 +0200	[thread overview]
Message-ID: <CAOOOohTUcDLfsDRSh7fu7F8xSbPx6CJ4bX0Muz-6mNwc4QHddQ@mail.gmail.com> (raw)
In-Reply-To: <83ADBE14262643EA9519BBE719987901@erratique.ch>

[-- Attachment #1: Type: text/plain, Size: 2374 bytes --]

Hi Daniel,

I really don't see how this could work, since with the definition of coerce:

let coerce k v = if v.kind <> k then invalid_arg "" else v

the expressions [v] and [coerce k v] must have the same type. So the type
of [coerce] necessarily is of the form [kind -> 'a t -> 'a t]. You'd have
to return a [t] made from [k] instead to capture its type. Here is another
proposal:

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) -> [< kind] t -> 'a t
end = struct
  type kind = [ `A | `B ]
  type +'a t =
    { kind : 'a } constraint 'a = [< kind]

  let a () = { kind = `A }
  let b () = { kind = `B }
  let eq x y = match x, y with `A, `A | `B, `B -> true | `A, `B | `B, `A ->
false
  let coerce k v = if eq v.kind k then invalid_arg "" else { v with kind =
k }
end

Not sure though, that this can be used in practice because of the [eq]
function: you can't write it with a catch-all case otherwise it does not
type with [< ... ] types as its domains. Maybe using GADTs here would be
more appropriate?


Cheers,
  Philippe.



2014-08-22 5:17 GMT+02:00 Daniel Bünzli <daniel.buenzli@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
>
>
>
>
>
> --
> Caml-list mailing list.  Subscription management and archives:
> https://sympa.inria.fr/sympa/arc/caml-list
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs
>

[-- Attachment #2: Type: text/html, Size: 3571 bytes --]

  reply	other threads:[~2014-08-22 19:50 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 [this message]
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=CAOOOohTUcDLfsDRSh7fu7F8xSbPx6CJ4bX0Muz-6mNwc4QHddQ@mail.gmail.com \
    --to=philippe.veber@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).