caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Eric Cooper <ecc@cmu.edu>
To: caml-list@yquem.inria.fr
Subject: Re: [Caml-list] A nastier example
Date: Sat, 14 May 2005 11:09:02 -0400	[thread overview]
Message-ID: <20050514150902.GB28128@localhost> (raw)
In-Reply-To: <Pine.LNX.4.62.0505141638370.304@hydrogene.pps.jussieu.fr>

On Sat, May 14, 2005 at 04:51:07PM +0200, Julien Verlaguet wrote:
> Here is a nastier case than the one in the previous msg.
> 
> exception E of int;;
> 
> let x=E(1);;
> 
> exception E of bool;;
> 
> x=E(true);;
> 
> answer : true
> 
> I received many mails (in private), explaining to me how the equality 
> works in OCaml, how exceptions are represented etc ...
> Which is not what I was asking, I will try to reformulate :
> 
> Is this the behaviour we want ?
> 
> Can two values of different types be equal ?

But these aren't different types -- they're both type "exn".
For example:
    let test e = (e = Exit)
    val test : exn -> bool = <fun>
So test can be applied to any exception, no matter what kind of
structure it has.

-- 
Eric Cooper             e c c @ c m u . e d u


  reply	other threads:[~2005-05-14 16:09 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-05-14 14:51 Julien Verlaguet
2005-05-14 15:09 ` Eric Cooper [this message]
2005-05-14 15:36 ` [Caml-list] " Marcin 'Qrczak' Kowalczyk
2005-05-14 15:47   ` Julien Verlaguet
2005-05-15 14:59   ` Vincenzo Ciancia
2005-05-14 19:09 ` [Caml-list] " Jon Harrop
2005-05-15 15:50   ` skaller
2005-05-15 17:24   ` Mark Shinwell
2005-05-16  0:15     ` Jon Harrop
2005-05-16 11:40       ` Damien Doligez

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=20050514150902.GB28128@localhost \
    --to=ecc@cmu.edu \
    --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;
as well as URLs for NNTP newsgroup(s).