Tests whether any element of the first argument is not less than the corresponding element of the second argument.
d=vec_any_nlt(a, b)
The following table describes the types of the returned value and the function arguments.
| d | a | b |
|---|---|---|
| int | vector float | vector float |
| vector double | vector double |
The result is 1 if any element of a is not less than the corresponding element of b. Otherwise, the result is 0.