|
Array::Iterator 0.06Sponsored Links
| Array::Iterator 0.06 Description
Array::Iterator is a simple class for iterating over Perl arrays.
SYNOPSIS
use Array::Iterator;
# create an iterator with an array
my $i = Array::Iterator->new(1 .. 100);
# create an iterator with an array reference
my $i = Array::Iterator->new(@array);
# create an iterator with a hash reference
my $i = Array::Iterator->new({ __array__ => @array });
# a base iterator example
while ($i->hasNext()) {
if ($i->peek() < 50) {
# ... do something because
# the next element is over 50
}
my $current = $i->next();
# ... do something with current
}
# shortcut style
my @accumulation;
push @accumulation => { item => $iterator->next() } while $iterator->hasNext();
# C++ ish style iterator
for (my $i = Array::Iterator->new(@array); $i->hasNext(); $i->next()) {
my $current = $i->current();
# .. do something with current
}
# common perl iterator idiom
my $current;
while ($current = $i->getNext()) {
# ... do something with $current
}
This class provides a very simple iterator interface. It is is uni-directional and can only be used once. It provides no means of reverseing or reseting the iterator. It is not recommended to alter the array during iteration, however no attempt is made to enforce this (although I will if I can find an efficient means of doing so). This class only intends to provide a clear and simple means of generic iteration, nothing more (yet).
| |
Array::Iterator 0.06 copyright |
|
 |
WareSeeker periodically updates pricing and software information of Array::Iterator 0.06 from the publisher, so some information may be slightly out-of-date. You should confirm all information before relying on it. Software piracy is theft, Using Array::Iterator 0.06 crack, password, serial numbers, registration codes, key generators is illegal and prevent future development of Array::Iterator 0.06 Personal Edition.
|
WareSeeker also does not provide download link for Array::Iterator 0.06 from Rapidshare, Megaupload, Yousendit. The download file is obtained directly from the publisher, not from any Peer to Pear file sharing applications such as Shareaza, Limewire, Kazaa, Imesh, eDonkey, eMule, Ares, BearShare, Overnet, Morpheus, BitTorrent Azureus and WinMX
|
Related Software to Array::Iterator 0.06 |
 |
Iterator is a general-purpose iterator class.... |
 |
Iterator::Misc Perl module package contains miscellaneous iterator functions.... |
 |
Iterator::Util Perl package contains essential utilities for the Iterator class.... |
 |
Tie::Array::PackedC is a Tie a Perl array to a C-style array (packed; elements of a single, simple data type).... |
 |
Iterator::IO is a Perl module with filesystem and stream iterators.... |
 |
Iterator::BreakOn is a Perl module to create iterators with control flow breaks.... |
 |
Net::Delicious::Iterator is an iterator class for Net::Delicious thingies.... |
 |
Tie::Array::RestrictUpdates can limit the number of times you change elements in an array.... |
 |
SPOPS::Iterator is a class to cycle through results and return SPOPS objects.... |
 |
Tie::FlatFile::Array is a Perl extension which treats a flatfile database as an array of arrays.... |
Similar Software to Array::Iterator 0.06 |
 |
Set::Array Perl module contains arrays as objects with lots of handy methods and support for method chaining.... |
 |
Array::Utils module contains small utils for array manipulation.... |
 |
Array::Compare is a Perl extension for comparing arrays.... |
 |
Array::PatternMatcher is a pattern matching for arrays.... |
 |
Array::Each::Tutorial - POD giving various examples how to use Array::Each.... |
 |
AVL Array is an STL-like container for C++ that fills the gap between vector.... |
 |
IP-Array is a iptables firewall script written in bash.... |
 |
Array-util is a small tool to get some information from a SmartArray controller.... |
 |
Array Designer helps design thousands of efficient, highly specific oligos to make microarrays for SNP genotyping.... |
 |
CPQ Array Daemon project keeps on monitoring your controller and checks for abnormal conditions.... |
Rating for Array::Iterator 0.06 |
This link is not rated yet. Be the first who rates it!
|
Reviews for Array::Iterator 0.06 |
|
 |
Search Software |
 |
| Title: | Array::Iterator 0.06 | | Publishers: | | | File Size: | 0.010 MB | | License: | Perl Artistic License | | User Rating: | 0 | | Download: | 7250 | | Link added: | Jun 11, 2007 | | Tags: | , | | Category: | > > |
|