Help for this page
sub gen_idx_powerset (Int $size is copy) returns Array { my @c = ([]); ... } return @c; }
sub gen_idx_powerset (Int $size is copy) returns Ref { my @c = ([]); ... } }; }