Sequence F32ToI64

std/conversion/scalar/to_i64::F32ToI64


Parameters

↳ var pos_infinity: i64 = 9223372036854775807
↳ var neg_infinity: i64 = -9223372036854775808
↳ var nan: i64 = 0

Inputs

value: Stream<f32>

Outputs

↦ value: Stream<i64>


Convert stream of f32 into i64.

Every f32 is truncated to fit into the i64, 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.