in reply to Common Perl Idioms
Though personally I'd go with the less compact, but more readablesub in_list { ( $_ eq $_[0] ) && return 1 for @_[ 1 .. $#_ ]; undef;}
Since if it's going to be a sub anyway, you might as well make it a little easier to read.sub in_list { for (@_[ 1 .. $#_ ]){ return 1 if $_ eq $_[0]; } undef; }
|
---|