vec_all_gt: All Elements Greater Than (deprecated)
d = vec_all_gt(a, b)
Tests whether all elements of the first argument are greater than the corresponding elements of
the second argument. The result is 1 if all elements of a are greater than the
corresponding elements of b. Otherwise, the result is 0.
| d | a | b |
|---|---|---|
| int | vector signed char | vector bool char |
| vector bool char | vector bool char | |
| vector signed char | ||
| vector unsigned char | ||
| vector unsigned char | vector bool char | |
| vector signed short | vector bool short | |
| vector bool short | vector bool short | |
| vector signed short | ||
| vector unsigned short | ||
| vector unsigned short | vector bool short | |
| vector signed int | vector bool int | |
| vector bool int | vector bool int | |
| vector signed int | ||
| vector unsigned int | ||
| vector unsigned int | vector bool int | |
| vector signed long long | vector bool long long | |
| vector bool long long | vector bool long long | |
| vector signed long long | ||
| vector unsigned long long | ||
| vector unsigned long long | vector bool long long |
Note: For other prototypes that are not deprecated of this vector built-in
function, see
vec_all_gt: All Elements Greater Than.