caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Walter Cazzola <cazzola@dico.unimi.it>
To: David Allsopp <dra-news@metastack.com>
Cc: "OCaml List (caml-list@inria.fr)" <caml-list@inria.fr>
Subject: RE: [Caml-list] still puzzled on generic types
Date: Thu, 29 Sep 2011 17:29:00 +0200 (CEST)	[thread overview]
Message-ID: <alpine.LFD.2.00.1109291719440.4431@surtur.dico.unimi.it> (raw)
In-Reply-To: <E51C5B015DBD1348A1D85763337FB6D9C248DABE@Remus.metastack.local>

On Thu, 29 Sep 2011, David Allsopp wrote:

> I think it's probably something to do with optional arguments not
> behaving as you expect.

uhm, would be interesting to see what is wrong on my use of the optional
arguments.

> But this is a bad use for optional arguments - you should instead use
> a nested function to pass the accumulator values. This works fine:

yes my first attempt was implemented with nested functions but ,,,

> let enumerate l =
>  let rec enumerate acc n = function
>    h::ls -> enumerate ((n, h)::acc) (n + 1) ls
>  | [] -> List.rev acc
>  in
>    enumerate [] 0 l

... my nested function had a different name than the nextee function and
I was passing l to it too. Could you explain me why your code works? in
particular where does it take the list to enumerate? Silly question I
know but it seems magic to me written in such a way

> Concatenating lists is also expensive in terms of the left list so
> your function is about as slow as possible! Much better when aiming
> for tail recursion, accumulate a reversed list and then reverse it in
> the basis case.

Ok, thanks for the note, but efficiency issues are still far in my
learning curve ;-)

Walter

-- 

  reply	other threads:[~2011-09-29 15:29 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-29 15:07 Walter Cazzola
2011-09-29 15:16 ` David Allsopp
2011-09-29 15:29   ` Walter Cazzola [this message]
2011-09-29 19:04     ` David Allsopp
2011-09-29 15:20 ` Pierre Chopin
2011-09-29 15:32   ` Walter Cazzola

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=alpine.LFD.2.00.1109291719440.4431@surtur.dico.unimi.it \
    --to=cazzola@dico.unimi.it \
    --cc=caml-list@inria.fr \
    --cc=dra-news@metastack.com \
    /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).