Returns 'true' if exactly all of the 'l' arrays's elements satisfy the condition 'f'.
Example of use: NArray.ForAll (array [2, 4, 6, 8, 10], fun (x) { x % 2 == 0 }) evaluates to 'true' as all the array's elements are even integers.
NArray Class | Nemerle.Utility Namespace