Sequence ToU32

std/conversion/vector/f64::ToU32


Parameters

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

Inputs

value: Stream<Vec<f64>>

Outputs

↦ value: Stream<Vec<u32>>


Convert stream of Vec<f64> into Vec<u32> one.

Vec<f64> gets converted into Vec<u32>, and the resulting vectors are send through stream in continuity.

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