caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Jon Harrop <jon@ffconsultancy.com>
To: caml-list@yquem.inria.fr
Subject: Re: [Caml-list] Execution time of class versus record
Date: Tue, 26 Jun 2007 08:02:52 +0100	[thread overview]
Message-ID: <200706260802.52941.jon@ffconsultancy.com> (raw)
In-Reply-To: <6f9f8f4a0706252353g47af2ed6v8049476a71404add@mail.gmail.com>

On Tuesday 26 June 2007 07:53:01 Loup Vaillant wrote:
> Err, I don't get it : I see exactly the same thing (written twice) here.
>
> Are you telling that :
> type t = A of int * int   <==>   type t = (A of int) * int

Nope:

# type t1 = A1 of int * int;;
type t1 = A1 of int * int
# type t2 = A2 of (int * int);;
type t2 = A2 of (int * int)

The former type has a contructor with two arguments. The latter type has a 
contructor with one argument that is a pair.

Only in the latter case can you contruct directly from a pair:

# let a = 1, 2;;
val a : int * int = (1, 2)
# A1 a;;
The constructor A1 expects 2 argument(s),
but is here applied to 1 argument(s)
# A2 a;;
- : t2 = A2 (1, 2)

This distinction does not appear with polymorphic variants because they always 
adopt the latter representation.

Despite the additional boxing, the performance trade-offs are non-trivial. For 
example, a pair can be extracted directly from the latter representation with 
no allocation required:

# function A2 x -> x;;
- : t2 -> int * int = <fun>

whereas the former requires the construction of a pair:

# function A1 x -> x;;
The constructor A1 expects 2 argument(s),
but is here applied to 1 argument(s)
# function A1(x, y) -> x, y;;
- : t1 -> int * int = <fun>

-- 
Dr Jon D Harrop, Flying Frog Consultancy Ltd.
The OCaml Journal
http://www.ffconsultancy.com/products/ocaml_journal/?e


  reply	other threads:[~2007-06-26  7:08 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-06-24 15:14 tmp123
2007-06-24 15:29 ` [Caml-list] " Jon Harrop
2007-06-24 15:48   ` Till Varoquaux
2007-06-24 16:06     ` Arnaud Spiwack
2007-06-24 18:18       ` skaller
2007-06-24 18:29       ` Gerd Stolpmann
2007-06-24 18:51         ` Arnaud Spiwack
2007-06-24 19:11           ` Chris King
2007-06-25  3:25           ` Jon Harrop
2007-06-25 11:16             ` Arnaud Spiwack
2007-06-25 12:07               ` Jon Harrop
2007-06-25 23:59                 ` Jonathan Bryant
2007-06-26  0:15                   ` Chris King
2007-06-26  6:53                     ` Loup Vaillant
2007-06-26  7:02                       ` Jon Harrop [this message]
2007-06-26 17:07                         ` Loup Vaillant
2007-06-28  1:13                 ` Christian Stork
2007-06-26 13:35 ` Sam Steingold
2007-06-26 16:29   ` [Caml-list] " Quôc Peyrot

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=200706260802.52941.jon@ffconsultancy.com \
    --to=jon@ffconsultancy.com \
    --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).