in reply to Re^4: Check if at least one element of array is bigger than X
in thread Check if at least one element of array is bigger than X
The entire list is visited with the any and the first solutions too (although the check function is only called until a match is found). for (@a) is saved due to the an optimisation that prevents the flattening of the list if it consists of just an array.
Update: Added reference to newly added first solution.
|
|---|