Sequence F64ToU16

std/conversion/scalar/to_u16::F64ToU16


Parameters

↳ var pos_infinity: u16 = 65535
↳ var neg_infinity: u16 = 0
↳ var nan: u16 = 0

Inputs

value: Stream<f64>

Outputs

↦ value: Stream<u16>


Convert stream of f64 into u16.

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