Sequence ToU128

std/conversion/scalar/f32::ToU128


Parameters

↳ var pos_infinity: u128 = 340282366920938463463374607431768211455
↳ var neg_infinity: u128 = 0
↳ var nan: u128 = 0

Inputs

value: Stream<f32>

Outputs

↦ value: Stream<u128>


Convert stream of f32 into u128.

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