libiterator-perl 0.03+ds1-1.1 source package in Ubuntu

Changelog

libiterator-perl (0.03+ds1-1.1) unstable; urgency=medium

  * Non maintainer upload by the Reproducible Builds team.
  * No source change upload to rebuild on buildd with .buildinfo files.

 -- Holger Levsen <email address hidden>  Mon, 28 Dec 2020 01:55:25 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Jammy release main misc

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libiterator-perl_0.03+ds1-1.1.dsc 2.1 KiB 456b1660f31c61dede71c0423a3299501908c2398c7e340e6837f5de629735ca
libiterator-perl_0.03+ds1.orig.tar.gz 11.8 KiB 46a6f918cfffbdd612e6bce9d4301171c61a5b3ac8aa4d3f294b95c7c069668d
libiterator-perl_0.03+ds1-1.1.debian.tar.xz 1.8 KiB d5d31b9f129068ebc9b6956aaf885c407b4a906c4e89eb5dbb71db6566a4d1fb

Available diffs

No changes file available.

Binary packages built by this source

libiterator-perl: Perl implementation of iterators

 Iterator is meant to be the definitive implementation of iterators, as
 popularized by Mark Jason Dominus's lectures and recent book (Higher Order
 Perl, Morgan Kauffman, 2005).
 .
 An "iterator" is an object, represented as a code block that generates the
 "next value" of a sequence, and generally implemented as a closure. When you
 need a value to operate on, you pull it from the iterator. If it depends on
 other iterators, it pulls values from them when it needs to. Iterators can be
 chained together (see Iterator::Util for functions that help you do just
 that), queueing up work to be done but not actually doing it until a value is
 needed at the front end of the chain. At that time, one data value is pulled
 through the chain.