blob: af6245ada2ab6c72fbb6cae9c05f604d9f2a6a54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
parse and validate simple name/value option pairs. Example:
use Data::OptList;
my $options = Data::Optlist::mkopt([
qw(key1 key2 key3 key4),
key5 => { ... },
key6 => [ ... ],
key7 => sub { ... },
key8 => { ... },
key8 => [ ... ],
]);
|