From: Brian Hurt <bhurt@spnz.org>
To: Peter Scott <sketerpot@chase3000.com>
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] Recursive apply function
Date: Thu, 20 Nov 2003 01:31:33 -0600 (CST) [thread overview]
Message-ID: <Pine.LNX.4.44.0311200125490.5009-100000@localhost.localdomain> (raw)
In-Reply-To: <5.2.0.9.0.20031119204912.00a9fb28@127.0.0.1>
On Wed, 19 Nov 2003, Peter Scott wrote:
> I'm having an interesting disagreement with ocaml about types. I'm trying
> to make a function to imitate the lisp apply function. That is, I want to
> make a function which will apply another function to a list.
>
> I came up with this code:
>
> let rec apply f args =
> match args with
> arg :: rest -> apply (f arg) rest
> | [] -> f;;
This is untypeable. What's the type of f? It's a function that takes a
'a and returns a function which takes a type 'a and returns a function
which takes a type 'a and returns a function which takes a type 'a and
etc.
What you want is List.fold_left, which has type:
('a -> 'b -> 'a) -> 'a -> 'b list -> 'a
and can be implemented as:
let rec fold_left f init_val = function
| [] -> init_val
| h :: t -> fold_left f (f init_val h) t
;;
But don't reimplement it, use the library version.
>
> let add x y = x + y;;
> let x = apply add [2; 3];;
> print_int x;;
let x = List.fold_left (+) 0 [2; 3];;
You don't need to define a special add function.
--
"Usenet is like a herd of performing elephants with diarrhea -- massive,
difficult to redirect, awe-inspiring, entertaining, and a source of
mind-boggling amounts of excrement when you least expect it."
- Gene Spafford
Brian
-------------------
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
next prev parent reply other threads:[~2003-11-20 6:32 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-11-20 3:54 Peter Scott
2003-11-20 4:41 ` Aleksey Nogin
2003-11-20 7:31 ` Brian Hurt [this message]
2003-11-20 10:45 ` Ville-Pertti Keinonen
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=Pine.LNX.4.44.0311200125490.5009-100000@localhost.localdomain \
--to=bhurt@spnz.org \
--cc=caml-list@inria.fr \
--cc=sketerpot@chase3000.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