Help for this page

Select Code to Download


  1. or download this
    sub next_power_of_two {
        my %s;
        @s{1..shift} = ();
        return %s =~ m{/(.*)} && $1;
    }