Sequence ToI32

std/conversion/scalar/f32::ToI32


Parameters

↳ var pos_infinity: i32 = 2147483647
↳ var neg_infinity: i32 = -2147483648
↳ var nan: i32 = 0

Inputs

value: Stream<f32>

Outputs

↦ value: Stream<i32>


Convert stream of f32 into i32.

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

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