Treatment toU32

conv/f32::toU32


Parameters

↳ var nan: u32 = 0
↳ var neg_infinity: u32 = 0
↳ var pos_infinity: u32 = 4294967295

Inputs

⇥ value: Stream<f32>

Outputs

↦ into: Stream<u32>


Convert stream of f32 into u32.

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