From: Aleksey Nogin <nogin@cs.caltech.edu>
To: Peter Scott <sketerpot@chase3000.com>, Caml List <caml-list@inria.fr>
Subject: Re: [Caml-list] Recursive apply function
Date: Wed, 19 Nov 2003 20:41:12 -0800 [thread overview]
Message-ID: <3FBC45E8.8070603@cs.caltech.edu> (raw)
In-Reply-To: <5.2.0.9.0.20031119204912.00a9fb28@127.0.0.1>
On 19.11.2003 19:54, 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;;
>
> let add x y = x + y;;
> let x = apply add [2; 3];;
> print_int x;;
>
> As you can see, the idea is to go recursively applying the function to
> the first element of the list. Unfortunately, I get this message when
> run: "This expression has type 'a but is here used with type 'b -> 'a",
> referring to the "(f arg)" part.
>
> Is there a way around this?
Well, note that your "apply" function would only make sense for
fixed-length lists (e.g. "apply add [2; 3; 4]" is not right). In OCaml,
fixed-length lists are called "tuples". ;-)
--
Aleksey Nogin
Home Page: http://nogin.org/
E-Mail: nogin@cs.caltech.edu (office), aleksey@nogin.org (personal)
Office: Jorgensen 70, tel: (626) 395-2907
-------------------
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 4:42 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 [this message]
2003-11-20 7:31 ` Brian Hurt
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=3FBC45E8.8070603@cs.caltech.edu \
--to=nogin@cs.caltech.edu \
--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