Treatment toU16
conv/f32::toU16
Parameters
↳ var nan:
u16 = 0
↳ var neg_infinity:
u16 = 0
↳ var pos_infinity:
u16 = 65535
Inputs
⇥ value:
Stream<f32>
Outputs
↦ into:
Stream<u16>
Convert stream of f32
into u16
.
Every f32
is truncated to fit into u16
, and in case floating-point value does
not describe a real number:
pos_infinity
is used whenf32
is a positive infinity,neg_infinity
is used whenf32
is a negative infinity,nan
is used whenf32
is not a number.