caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Dan Grossman <djg@cs.washington.edu>
To: Serge <serge@shade.msu.ru>
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] Constructors as functions and tuples in constructors
Date: Wed, 08 Oct 2003 09:07:36 -0700	[thread overview]
Message-ID: <3F843648.3030200@cs.washington.edu> (raw)
In-Reply-To: <Pine.LNX.4.10.10310081945020.22773-100000@shade.msu.ru>


Serge wrote:
> First, it would be nice to have constructors as functions like below:
> 
> List. map Some [17]

Leads to strange error messages and is trivially circumventable (replace 
Some with fun x -> Some x)

> Second, it would also be nice not to have "the concept of constructor
> arity", and treat the code below as correct:
> 
> type t = A of int * int
> let _ = 
>   match A (17, 0) with
>     A z -> match z with (x, y) -> ()

Works with type t = A of (int * int).  You put the parens in.  So the 
choice is yours.  The advantage of leaving them out is usually performance.

Others can give the long version of these answers...

--Dan



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


  reply	other threads:[~2003-10-08 16:07 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-10-08 15:57 Serge
2003-10-08 16:07 ` Dan Grossman [this message]
2003-10-08 16:33   ` Andreas Rossberg
2003-10-08 17:05     ` Dan Grossman
2003-10-09 12:40       ` Andreas Rossberg
2003-10-08 18:28     ` Alain.Frisch
2003-10-08 18:44       ` Marcin 'Qrczak' Kowalczyk
2003-10-08 16:13 ` Michal Moskal
2003-10-08 16:25 ` Nicolas Cannasse

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=3F843648.3030200@cs.washington.edu \
    --to=djg@cs.washington.edu \
    --cc=caml-list@inria.fr \
    --cc=serge@shade.msu.ru \
    /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).