Help for this page

Select Code to Download


  1. or download this
    my @array does role {
        method insert ($x) {
            @.push($x) unless any(self) eqv $x;
        }
    };
    
  2. or download this
    my @array does role {
        method insert ($x) {
            @.push($x) unless any(self) eqv $x;
        }
    } = 1..5;