File: complex-nested-either-and.pl

package info (click to toggle)
libmetacpan-client-perl 2.029000-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 548 kB
  • sloc: perl: 2,540; makefile: 8
file content (26 lines) | stat: -rw-r--r-- 535 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

# examples/complex-nested-either-and.pl

use strict;
use warnings;
use Data::Printer;
use MetaCPAN::Client;

my $authors =
    MetaCPAN::Client->new->author({
        either => [
            { all => [ { name => 'Dave *'  },
                       { email => '*gmail.com' } ]
            },
            { all => [ { name => 'Sam *' },
                       { email => '*cpan.org' } ]
            },
        ],
    });

my %output = (
    TOTAL => $authors->total,
    NAMES => [ map { $authors->next->name } 0 .. 9 ],
);

p %output;