Iterator-Flex

 view release on metacpan or  search on metacpan

lib/Iterator/Flex/Zip.pm  view on Meta::CPAN

package Iterator::Flex::Zip;

# ABSTRACT: Zip Iterator Class

use v5.28;
use strict;
use warnings;
use experimental 'signatures', 'declared_refs';

our $VERSION = '0.34';

use Iterator::Flex::Factory 'to_iterator';
use Iterator::Flex::Utils qw[ THROW STATE EXHAUSTION :IterAttrs :IterStates throw_failure ];
use Ref::Util 'is_ref', 'is_hashref', 'is_blessed_ref';
use List::Util 'first';

use parent 'Iterator::Flex::Base';

use constant { map { $_ => lc } qw( ON_EXHAUSTION TRUNCATE THROW INSERT ) };

use namespace::clean;























































( run in 1.893 second using v1.01-cache-2.11-cpan-75ffa21a3d4 )