Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Implementing a cyclic array

by citromatik (Curate)
on Jun 19, 2009 at 12:39 UTC ( [id://773018]=note: print w/replies, xml ) Need Help??


in reply to Implementing a cyclic array

Tie::Cycle is a simple module that implements cyclic arrays through a tied reference (to the array):

use strict; use warnings; use Tie::Cycle; my @names = qw/tom harry diana nick sally henry/; tie my $cycle, 'Tie::Cycle', [ sub{print "$_[0] plays\n"}, sub{print "$_[0] eats\n"}, sub{print "$_[0] sleeps\n"} ]; $cycle && $cycle->($_) for (@names);

Prints:

tom plays harry eats diana sleeps nick plays sally eats henry sleeps

The last line ($cycle && $cycle->($_) for (@names);) seems a bit odd, but $cycle->($_) doesn't trigger the FETCH sub in the tied scalar (anybody knows why?) and a first call to $cycle is needed.

citromatik

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-19 03:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found