table of contents
NestedGroups::Member(3pm) | User Contributed Perl Documentation | NestedGroups::Member(3pm) |
NAME¶
Set::NestedGroup::Member - Set of nested groups
SYNOPSIS¶
use Set::NestedGroup; $acl = new Set::NestedGroup; $acl->add('user','group'); $acl->add('group','parentgroup'); $list=$acl->list(); for(my $i=0;$i<$list->rows();$i++){ my ($member,$group)=$list->next(); print "$member=$group\n"; }
DESCRIPTION¶
Set::NestedGroup::Member objects are returns from a Set::NestedGroup object's list() method.
METHODS¶
AUTHOR¶
Alan R. Barclay, gorilla@elaine.drink.com
SEE ALSO¶
perl(1), Set::NestedGroup
POD ERRORS¶
Hey! The above document had some coding errors, which are explained below:
- Around line 73:
- '=item' outside of any '=over'
- Around line 83:
- You forgot a '=back' before '=head1'
2022-10-15 | perl v5.34.0 |