Set::NestedGroup::Member - Set of nested groups
Contents
Description
Set::NestedGroup::Member objects are returns from a Set::NestedGroup object's list() method.
Methods
rows ()
Returns the number of rows this has. May be used to construct a loop to extract all the data.
next ()
Returns a list comprising of the next member & group. Returns undef when the list is exhausted.
Name
Set::NestedGroup::Member - Set of nested groups
Pod Errors
Hey! Theabovedocumenthadsomecodingerrors,whichareexplainedbelow:
Around line 73:
'=item' outside of any '=over'
Around line 83:
You forgot a '=back' before '=head1'
perl v5.36.0 2022-10-15 NestedGroups::Member(3pm)
See Also
perl(1), Set::NestedGroup
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";
}
