|
inlineconstexpr |
Parameters
x
: floating value.c
: Conditional expression masking the operation.m
: Logical value masking the operation.Return value
x
In particular, for floating inputs:NaN
is returned.Masked Call
The call eve::log2[mask](x)
provides a masked version of eve::log2
which is equivalent to if_else (mask, log2(x), x)
.
Example