Help for this page

Select Code to Download


  1. or download this
    sub any { $_ && return 1 for @_; 0 }
    sub all { $_ || return 0 for @_; 1 }
    sub none { $_ && return 0 for @_; 1 }
    sub notall { $_ || return 1 for @_; 0 }