Sequence F64ToI8

std/conversion/scalar/to_i8::F64ToI8


Parameters

↳ var pos_infinity: i8 = 127
↳ var neg_infinity: i8 = -128
↳ var nan: i8 = 0

Inputs

value: Stream<f64>

Outputs

↦ value: Stream<i8>


Convert stream of f64 into i8.

Every f64 is truncated to fit into the i8, and in case floating-point value does not describe a real number:

  • pos_infinity is used when f64 is a positive infinity,
  • neg_infinity is used when f64 is a negative infinity,
  • nan is used when f64 is not a number.