libiterator-perl 0.03-ok1 source package in openKylin

Changelog

libiterator-perl (0.03-ok1) yangtze; urgency=medium

  * Build for openkylin.

 -- sufang <email address hidden>  Thu, 15 Sep 2022 09:51:21 +0800

Upload details

Uploaded by:
sufang
Sponsored by:
Cibot
Uploaded to:
Yangtze V1.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section
Yangtze V1.0 release main perl
Yangtze V1.0 proposed main perl

Downloads

File Size SHA-256 Checksum
libiterator-perl_0.03.orig.tar.gz 21.5 KiB 99f3af5ed11e87c9d4481ea347138157c58e472d3d2b13fe86a743f08cbc85a9
libiterator-perl_0.03-ok1.debian.tar.xz 1.8 KiB 0b58600de9d7ae78ec975d936809b862fe63f847c9a4cbc4dfabb423e474444b
libiterator-perl_0.03-ok1.dsc 1.8 KiB d18985b36842b60e724f9f4e084bab775bfe17ee8a8fefbbd2917cd532dcf843

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.