From: Jon Harrop <postmaster@jdh30.plus.com>
To: "caml-list" <caml-list@inria.fr>
Subject: [Caml-list] Pattern matching over elements at the front of a container
Date: Sat, 26 Jun 2004 12:15:26 +0100 [thread overview]
Message-ID: <200406261215.26971.postmaster@jdh30.plus.com> (raw)
I'm currently storing stuff and things in a list. The ability to pattern match
over the first element or two using a succinct notation is, of course, nifty.
However, I'd like to replace my list with some other container, maybe an
array, maybe something of my own creation. What's the easiest way to keep my
ability to pattern match over the first few elements at the front of the
container? I could try to extract the first couple of elements and match over
a 2-tuple of "element option"s. Can a lazily evaluated stream help? How
expensive is this in terms of performance?
In the case of lists, you can match against the first two elements using the
pattern "a::b::_". As the "_" is not bound in the corresponding expression,
an equivalent notation could be invented for arrays in this case. Is this
feasible? Would anyone else find this useful?
Also, is it not possible to alter the definition and implementation of OCaml
such that the pattern "(a, a)" is treated as "(a, b) when a=b"? Has this not
been done because the "=" is suspect?
Cheers,
Jon.
-------------------
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 reply other threads:[~2004-06-26 11:17 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-06-26 11:15 Jon Harrop [this message]
2004-06-26 13:36 ` skaller
2004-06-27 10:11 ` Richard Jones
2004-06-27 11:40 ` William Lovas
2004-06-28 7:57 ` Luc Maranget
2004-06-28 12:01 ` Jon Harrop
2004-06-28 12:50 ` Luc Maranget
2004-06-28 17:09 ` Jon Harrop
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=200406261215.26971.postmaster@jdh30.plus.com \
--to=postmaster@jdh30.plus.com \
--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).