|
inlineconstexpr |
Computes the logical OR of its arguments.
Defined in Header
Parameters
x, y: arguments.Return value
Returns the logical OR of the two parameters following the logical operations semantic.
The call logical_or(x, y) is semantically equivalent to x || y if x or y is an simd value and does not shortcut.
|| is supported, the || operator on standard scalar types is the original one and so will return bool instead of eve::logical_value.