libhash-storediterator-perl 0.007-1 source package in Ubuntu

Changelog

libhash-storediterator-perl (0.007-1) unstable; urgency=low


  * Team upload.
  * New upstream release.
  * Update {alternative,versioned) build dependencies.

 -- gregor herrmann <email address hidden>  Mon, 07 Oct 2013 21:20:52 +0200

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
misc
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe misc

Downloads

File Size SHA-256 Checksum
libhash-storediterator-perl_0.007-1.dsc 2.2 KiB f8d89418f9edab6dabbe300d92c6ef5ea64908ddfcb397cac930a11b0c665f46
libhash-storediterator-perl_0.007.orig.tar.gz 60.2 KiB 842a765ab7e47e5e336071a328552359ccfa551527d74b7a74939d8fab9dfcc0
libhash-storediterator-perl_0.007-1.debian.tar.gz 1.9 KiB 234633ceed9a8a0633b2ab12259840b4f2632e035a91c114376fcbb314c4528e

Available diffs

No changes file available.

Binary packages built by this source

libhash-storediterator-perl: Perl module for accessing a hashes internal iterator

 Hash::StoredIterator gives access to get, set, and init the iterator inside
 a hash. This allows one to store the current iterator, use
 each/keys/values/etc, and then restore the iterator, this helps to ensure
 that nobody interacts badly with other users of the iterator.
 .
 In perl all hashes have an internal iterator. This iterator is used by the
 each() function, as well as by keys() and values(). Because these all share
 use of the same iterator, they tend to interact badly with eachother when
 nested.