log10(x) Returns the base 10 logarithm of x.
is_zero(x) Returns True if x is a zero; otherwise returns False.
is_normal(x) Returns True if x is a normal number; otherwise returns False.
is_signed(x) Returns True if x is negative; otherwise returns False.
is_snan(x) Returns True if x is a signaling NaN; otherwise returns False.
is_nan(x) Returns True if x is a qNaN or sNaN; otherwise returns False.
is_qnan(x) Returns True if x is a quiet NaN; otherwise returns False.
is_finite(x) Returns True if x is finite; otherwise returns False.
fma(x, y, z) Returns x multiplied by y, plus z.
exp(x) Returns e ** x.
Page 523 of 663