Help for this page

Select Code to Download


  1. or download this
    push @ary, "foo" unless grep { $_ eq "foo" } @ary;
    
  2. or download this
    push @ary, "foo" unless any { $_ eq "foo" } @ary;
    # OR
    push @ary, "foo" if    none { $_ eq "foo" } @ary;