|
inlineconstexpr |
Returns a logical true if and only if the element value is a floating value representing an integer.
Defined in Header
Parameters
x
: argument.Return value
The call eve;is_flint[mask](x)
is semantically equivalent to: eve::is_eqz (eve::frac (x))
;
This means that x is a floating real value representing an integer (flint is a shortcut for 'floating integer').
Masked Call
The call eve;is_flint[mask](x)
provides a masked version of eve::is_flint
which is equivalent to if_else (mask, is_flint(x), eve::false( eve::as(x)))
.
Example