Function |to_i8
conv/f64::|to_i8
Usage
|to_i8(value, pos_infinity, neg_infinity, nan)
Parameters
↳ value:
f64
↳ pos_infinity:
i8
↳ neg_infinity:
i8
↳ nan:
i8
Return
↴ i8
Turns f64
into i8
.
f64
is truncated to fit into i8
, and in case floating-point value does
not describe a real number:
pos_infinity
is used whenf64
is a positive infinity,neg_infinity
is used whenf64
is a negative infinity,nan
is used whenf64
is not a number.