DOKK / manpages / debian 12 / libset-nestedgroups-perl / Set::NestedGroups::Member.3pm.en
NestedGroups::Member(3pm) User Contributed Perl Documentation NestedGroups::Member(3pm)

Set::NestedGroup::Member - Set of nested groups

  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";   
  }

Set::NestedGroup::Member objects are returns from a Set::NestedGroup object's list() method.

Returns the number of rows this has. May be used to construct a loop to extract all the data.
Returns a list comprising of the next member & group. Returns undef when the list is exhausted.

Alan R. Barclay, gorilla@elaine.drink.com

perl(1), Set::NestedGroup

Hey! The above document had some coding errors, which are explained below:

'=item' outside of any '=over'
You forgot a '=back' before '=head1'
2022-10-15 perl v5.34.0