Help for this page

Select Code to Download


  1. or download this
    sub gen_idx_powerset (Int $size is copy) returns Array {
        my @c = ([]);
    ...
        }
        return @c;
    }
    
  2. or download this
    sub gen_idx_powerset (Int $size is copy) returns Ref {
        my @c = ([]);
    ...
            }
        };
    }