|
NAMESet::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";
}
DESCRIPTIONSet::NestedGroup::Member objects are returns from a Set::NestedGroup object's list() method. METHODSAUTHORAlan R. Barclay, gorilla@elaine.drink.com SEE ALSOperl(1), Set::NestedGroup POD ERRORSHey! The above document had some coding errors, which are explained below:
|