libiterator-perl 0.03+ds1-ok2 source package in openKylin

Changelog

libiterator-perl (0.03+ds1-ok2) nile; urgency=medium

  * Re-upload.

 -- CI Bot <email address hidden>  Tue, 09 Jul 2024 02:51:40 +0000

Upload details

Uploaded by:
Cibot
Uploaded to:
Nile V2.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section
Nile V2.0 release main perl
Nile V2.0 proposed main perl

Builds

Nile V2.0: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libiterator-perl_0.03+ds1.orig.tar.gz 11.8 KiB 46a6f918cfffbdd612e6bce9d4301171c61a5b3ac8aa4d3f294b95c7c069668d
libiterator-perl_0.03+ds1-ok2.debian.tar.xz 1.6 KiB 585ce32d8288025216e3d13fc888601db3cef38306e82d2c36564ee858a0ea9c
libiterator-perl_0.03+ds1-ok2.dsc 1.9 KiB 84323beeeaa945fb5a2f58182ce572d6edf84c52556b08a76d88d5782f8fe5ad

Available diffs

View changes file

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.