Treatment toI128

conv/f64::toI128


Parameters

↳ var nan: i128 = 0
↳ var neg_infinity: i128 = -170141183460469231731687303715884105728
↳ var pos_infinity: i128 = 170141183460469231731687303715884105727

Inputs

⇥ value: Stream<f64>

Outputs

↦ into: Stream<i128>


Convert stream of f64 into i128.

Every f64 is truncated to fit into i128, 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.