- or download this
# One argument is true
...
# All arguments are true
sub all { $_ || return 0 for @_; 1 }
- or download this
# One argument is true
...
# All arguments are true
sub all { $_ == 'foo' || return 0 for @_; 1 }
- or download this
if (all (@array == 'foo')) {