From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on yquem.inria.fr X-Spam-Level: * X-Spam-Status: No, score=1.0 required=5.0 tests=AWL,SPF_NEUTRAL autolearn=disabled version=3.1.3 X-Original-To: caml-list@yquem.inria.fr Delivered-To: caml-list@yquem.inria.fr Received: from discorde.inria.fr (discorde.inria.fr [192.93.2.38]) by yquem.inria.fr (Postfix) with ESMTP id 86537BC69 for ; Tue, 26 Jun 2007 08:53:03 +0200 (CEST) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.240]) by discorde.inria.fr (8.13.6/8.13.6) with ESMTP id l5Q6r23Z021034 for ; Tue, 26 Jun 2007 08:53:03 +0200 Received: by an-out-0708.google.com with SMTP id b15so452855ana for ; Mon, 25 Jun 2007 23:53:02 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=jM4I1N/UUFsar1aLvmeSaUaeMVZQAPRo8OrQqZnmZDdJqOgqjRRNb5ewJhEaPbUcZMhvSKCrS1gk2nuuyqV2aCOd4rKnJEbmlihDEg4nt0Ywtu150u0raotIFI9ZuirO1s6LaCGzXueEHrtnQcxF1sOLz5/n22SopE4CkAWbxuw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=TS0NBPyvIIeR9yEK6JcsAFqB6C1ZOxc/x1XYN9i6j6it6dMhv60Z4Jw9pIpQ+HdbJDcuzuf7/TfKFmSCn/oMLkTv4c70eE0P+Bm+TInVjJuS4HVEyDPVOb9wR5Dg+kP3IOSojUHdki46Hin22RrFJRuhkoQEOuIWL+RLkqOux0c= Received: by 10.100.124.5 with SMTP id w5mr3617790anc.1182840781886; Mon, 25 Jun 2007 23:53:01 -0700 (PDT) Received: by 10.100.33.15 with HTTP; Mon, 25 Jun 2007 23:53:01 -0700 (PDT) Message-ID: <6f9f8f4a0706252353g47af2ed6v8049476a71404add@mail.gmail.com> Date: Tue, 26 Jun 2007 08:53:01 +0200 From: "Loup Vaillant" To: caml-list@yquem.inria.fr Subject: Re: [Caml-list] Execution time of class versus record In-Reply-To: <875c7e070706251715x61893212k62c9a15ce8e08989@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <467E8A6E.9050700@menta.net> <200706250425.28516.jon@ffconsultancy.com> <467FA3F8.2030601@lix.polytechnique.fr> <200706251307.16487.jon@ffconsultancy.com> <01BF21CB-3772-4642-8EA7-C18DA5A8F712@valdosta.edu> <875c7e070706251715x61893212k62c9a15ce8e08989@mail.gmail.com> X-j-chkmail-Score: MSGID : 4680B7CE.000 on discorde : j-chkmail score : X : 0/20 1 0.000 -> 1 X-Miltered: at discorde with ID 4680B7CE.000 by Joe's j-chkmail (http://j-chkmail . ensmp . fr)! X-Spam: no; 0.00; 2007,:98 wrote:01 caml-list:01 int:01 int:01 written:07 jun:09 err:09 execution:10 between:13 type:14 type:14 difference:14 record:17 25,:82 On Jun 25, 2007, at 8:07 AM, Jon Harrop wrote: > For the same reason, there is a difference between: > > type t = A of int * int > > and: > > type t = A of (int * int) 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 ? Regards, Loup Vaillant