in reply to Testing for a string value within an array
Incidently, if you really don't want to use a hash you will be able to do the following in Perl6 which is hiding the search under the covers.
push @array, $value if $value eq none( @array );
Cheers - L~R
|
|---|