caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Brian Rogoff <bpr@bpr.best.vwh.net>
To: Oliver Bandel <oliver@first.in-berlin.de>
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] Records with same structure in OCaml
Date: Sun, 7 Apr 2002 16:43:44 +0000 (GMT)	[thread overview]
Message-ID: <Pine.BSF.4.40.0204071635400.25632-100000@bpr.best.vwh.net> (raw)
In-Reply-To: <Pine.LNX.3.95.1020406194455.3960A-100000@first.in-berlin.de>

On Sat, 6 Apr 2002, Oliver Bandel wrote:
> Hello,
>
>
> when I use two records with the same structure,
> how can they be distinguished? And how can
> the correct type be choosed?

This question comes up frequently enough to be a FAQ entry

http://caml.inria.fr/FAQ/FAQ_EXPERT-eng.html#labels_surcharge

and the most frequent answer is "Don't do that!", meaning either
disambiguate the field names if the records are defined in the same module

type complex = { complex_re: float; complex_im: float };
type foo     = { foo_re: float; foo_im: float };

or put each definition in its own module and use the fully qualified name
if you must mix them. You can also use classes, but if you're a
performance junkie you should realize that you give up a lot of
performance, especially in the example you use, complex numbers. You also
lose pattern matching (and gain some polymorphism) is you use the class
system.

-- Brian
-------------------
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


      parent reply	other threads:[~2002-04-07 21:24 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-04-06 17:52 Oliver Bandel
2002-04-07 15:38 ` Tim Freeman
2002-04-07 16:43 ` Brian Rogoff [this message]

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=Pine.BSF.4.40.0204071635400.25632-100000@bpr.best.vwh.net \
    --to=bpr@bpr.best.vwh.net \
    --cc=caml-list@inria.fr \
    --cc=oliver@first.in-berlin.de \
    /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).