From: Martin Jambon <martin_jambon@emailuser.net>
To: Jonathan Roewen <jonathan.roewen@gmail.com>
Cc: OCaml <caml-list@yquem.inria.fr>
Subject: Re: [Caml-list] Feature Wish: List comprehensions
Date: Thu, 30 Mar 2006 11:02:52 -0800 (PST) [thread overview]
Message-ID: <Pine.LNX.4.63.0603301055050.15664@munge> (raw)
In-Reply-To: <ad8cfe7e0603300038l63485961y642b537250abdc6f@mail.gmail.com>
There's a camlp4 lib for this:
http://oandrieu.nerim.net/ocaml/#pa_compr
If you use ocamlfind, you might want install it with p4ck, which also
installs a few other camlp4 hacks from various authors.
(http://martin.jambon.free.fr/p4ck.html)
Martin
On Thu, 30 Mar 2006, Jonathan Roewen wrote:
> Hi,
>
> I'm having a small problem trying to tidily define an equivalent
> function to some Haskell code.
>
> Haskell:
> pThen combine p1 p2 toks
> = [ (combine v1 v2, toks2) | (v1,toks1) <- p1 toks, (v2, toks2) <- p2 toks1 ]
>
> (I'll also be needing to specify equivalents for pThen3 & pThen4).
>
> The first isn't too bad...
>
> let pThen combine p1 p2 = fun ts ->
> let l1 = p1 ts in
> let l2 = List.map (fun (v1,ts1) -> p2 ts1) l1 in
> List.concat
> (List.map2 (fun (v1,ts1) l2 -> List.map (fun (v2,ts2) -> combine
> v1 v2,ts2) l2) l1 l2)
>
> As you can see, extending this style to pThen3 & pThen4 is going to be
> very, very ugly (and hard to get right first time).
>
> I know it's just shorthand for map/filter, (and more complex
> derivatives of these), but it would be nice to have in ocaml...
>
> BTW: any suggestions on a better way to write the above function would
> be appreciated ;-)
>
> Kindest Regards,
>
> Jonathan Roewen
>
> _______________________________________________
> Caml-list mailing list. Subscription management:
> http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
> Archives: http://caml.inria.fr
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs
>
--
Martin Jambon, PhD
http://martin.jambon.free.fr
Edit http://wikiomics.org, bioinformatics wiki
prev parent reply other threads:[~2006-03-30 19:03 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-03-30 8:38 Jonathan Roewen
2006-03-30 19:02 ` Martin Jambon [this message]
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.63.0603301055050.15664@munge \
--to=martin_jambon@emailuser.net \
--cc=caml-list@yquem.inria.fr \
--cc=jonathan.roewen@gmail.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