caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] inference and phantom types
@ 2002-10-21 15:23 Julien Cohen
  2002-10-22  1:59 ` Jacques Garrigue
  0 siblings, 1 reply; 2+ messages in thread
From: Julien Cohen @ 2002-10-21 15:23 UTC (permalink / raw)
  To: caml-list

I read in the thread 
http://caml.inria.fr/archives/200109/msg00097.html
that phantom types could be used in ocaml but I have some 
troubles understanding the way they really work.

In the following session I use a phantom type ('a,'b)t to 
simulate a list with an additionnal type 'b. I create a special 
cons preserving the type. I create an (int,bool)t value and when 
I make a cons on it and the phantom type seems not to be well 
infered:



         Objective Caml version 3.04

# type ('a,'b) t = 'a list;;
type ('a, 'b) t = 'a list

# let f (x:'a) (y:('a,'b) t) = (x::y : ('a,'b) t);;
val f : 'a -> ('a, 'b) t -> ('a, 'b) t = <fun>

# let (v: (int,bool) t) = [1];;
val v : (int, bool) t = [1]

# f 1 v;;
- : (int, '_a) t = [1; 1]


Is there a fundamental reason for the bool type not to be inferred?
(no response in the ocaml-beginner list)

Thanks
Julien Cohen

-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2002-10-22  2:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-10-21 15:23 [Caml-list] inference and phantom types Julien Cohen
2002-10-22  1:59 ` Jacques Garrigue

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).