Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re^2: List::MoreUtils before, after and ... between?

by Boldra (Deacon)
on Feb 22, 2012 at 09:13 UTC ( [id://955482]=note: print w/replies, xml ) Need Help??


in reply to Re: List::MoreUtils before, after and ... between?
in thread List::MoreUtils before, after and ... between?

This looks like the most readable to me, thanks Moritz!

I'm surprised you didn't post a Perl 6 version too ... I love those!



- Boldra
  • Comment on Re^2: List::MoreUtils before, after and ... between?

Replies are listed 'Best First'.
Re^3: List::MoreUtils before, after and ... between?
by moritz (Cardinal) on Feb 22, 2012 at 09:45 UTC

    I just didn't think of coming up with a Perl 6 solution, and even now I don't see a particularly elegant and readable way.

    So I've just ported toolic's solution to Perl 6, making the returned list of found values lazy:

    my @a = <eval DBIC::3 DBIC::2 DBIC::1 MyApp::3 MyApp::2 MyApp::1 Dance +r::3 Dancer::2 Dancer::1>; my @filtered := gather { my $flag = 0; for @a { last if /Dancer/; $flag = 1 if /DBIC/; $flag = 2 if $flag && !/DBIC/; take $_ if $flag == 2; } } .say for @filtered;

    (Tested with current Niecza)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://955482]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (3)
As of 2024-04-23 23:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found