aboutsummaryrefslogtreecommitdiff
path: root/devel/p5-Data-OptList/pkg-descr
blob: fe67a2266fd7e1b14d5de43dac324f49ec4464ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Hashes are great for storing named data, but if you want more than one entry
for a name, you have to use a list of pairs.  Even then, this is really boring
to write:

  @values = (
    foo => undef,
    bar => undef,
    baz => undef,
    xyz => { ... },
  );

With Data::OptList, you can do this instead:

  Data::OptList::mkopt([
    qw(foo bar baz),
    xyz => { ... },
  ]);

This works by assuming that any defined scalar is a name and any reference
following a name is its value.

WWW: http://search.cpan.org/dist/Data-OptList/