From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (from majordomo@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id WAA31486; Fri, 12 Apr 2002 22:20:31 +0200 (MET DST) X-Authentication-Warning: pauillac.inria.fr: majordomo set sender to owner-caml-list@pauillac.inria.fr using -f Received: from nez-perce.inria.fr (nez-perce.inria.fr [192.93.2.78]) by pauillac.inria.fr (8.7.6/8.7.3) with ESMTP id WAA12487 for ; Fri, 12 Apr 2002 22:20:30 +0200 (MET DST) Received: from wetware.wetware.com (wetware.wetware.com [199.108.16.1]) by nez-perce.inria.fr (8.11.1/8.11.1) with ESMTP id g3CKKSr05436 for ; Fri, 12 Apr 2002 22:20:28 +0200 (MET DST) Received: from kallisti.apple.com(wetware.wetware.com[199.108.16.1]) (1090 bytes) by wetware.wetware.com via sendmail with P:esmtp/R:bind_hosts/T:inet_zone_bind_smtp (sender: ) id for ; Fri, 12 Apr 2002 13:20:26 -0700 (PDT) (Smail-3.2.0.114 2001-Aug-6 #1 built 2002-Jan-4) Date: Fri, 12 Apr 2002 13:20:24 -0700 Subject: Re: [Caml-list] Simple question Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v481) Cc: caml-list@inria.fr To: Eric Merritt From: james woodyatt In-Reply-To: <20020412191529.79299.qmail@web13007.mail.yahoo.com> Message-Id: Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.481) Sender: owner-caml-list@pauillac.inria.fr Precedence: bulk On Friday, April 12, 2002, at 12:15 PM, Eric Merritt wrote: > > by this I assume that the '@' function is not as > strait forward as I thought it would be? In what > manner does it append to the list to make the time > 0(n^2)? -just curious. Here's the definition of the '@' operator from $OCAMLLIB/pervasives.ml: > let rec (@) l1 l2 = > match l1 with > [] -> l2 > | hd :: tl -> hd :: (tl @ l2) -- j h woodyatt ------------------- 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