none
# given [2..5]
$array->none(fun ($value) {
$value <= 1; # 1; true
});
$array->none(fun ($value) {
$value <= 2; # 0; false
});
The none method returns true if none of the elements in the array meet the criteria set by the operand and rvalue. This method returns a Data::Object::Number object.
none(CodeRef $arg1, Any $arg2) : NumObject
method
5 POD Errors
The following errors were encountered while parsing the POD:
- Around line 10:
Unknown directive: =name
- Around line 14:
Unknown directive: =usage
- Around line 26:
Unknown directive: =description
- Around line 32:
Unknown directive: =signature
- Around line 36:
Unknown directive: =type