- :logical
any?
check if any of the values in given block is true
Parameters
any? conditions :block
Returns
Examples
copyif any? @[false 3=4 2>1] -> print "yes, one (or more) of the values is true" ; yes, one (or more) of the values is true
copyprint any? @[false false false] ; false