caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: YAMAGATA yoriyuki <yoriyuki@mbg.sphere.ne.jp>
To: caml-list@inria.fr
Subject: Re: [Caml-list] Removing an element from a list
Date: Sat, 29 Jun 2002 05:10:24 +0900	[thread overview]
Message-ID: <20020629051024V.yoriyuki@mbg.sphere.ne.jp> (raw)
In-Reply-To: <20020628193952.GA5829@vincent>

From: Vincent Foley <vinfoley@iquebec.com>
Subject: [Caml-list] Removing an element from a list
Date: Fri, 28 Jun 2002 15:39:52 -0400

> I would like to know how to remove an element from a list.  For example,
> I would like to remove 3 in this list: [1; 2; 3; 4; 5].  How would I do
> it?

List.filter (fun e -> e <> 3) [1; 2; 3; 4; 5]

This creates the new list [1; 2; 4; 5] and does not modify the original
[1; 2; 3; 4; 5].  In caml, operations on lists is never destructive
(unlike lisp).

--
Yamagata Yoriyuki
http://www.mars.sphere.ne.jp/yoriyuki/
-------------------
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


  parent reply	other threads:[~2002-06-28 20:03 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-06-28 19:39 Vincent Foley
2002-06-28 19:53 ` Paul Steckler
2002-06-28 20:10 ` YAMAGATA yoriyuki [this message]
2002-07-13 12:53   ` Tomasz Zielonka

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=20020629051024V.yoriyuki@mbg.sphere.ne.jp \
    --to=yoriyuki@mbg.sphere.ne.jp \
    --cc=caml-list@inria.fr \
    /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).