Treatment toU32
conv/i32::toU32
Parameters
↳ var or_default:
u32 = 0
↳ var truncate:
bool = true
Inputs
⇥ value:
Stream<i32>
Outputs
↦ into:
Stream<u32>
Convert stream of i32
into u32
.
As this conversion might be lossy (every possible i32
value cannot fit into u32
),
truncate
allows value to be truncated to fit into a u32
, and or_default
set the
value that is assigned when a i32
is out of range for u32
and truncation not allowed.
Truncation happens on the binary level, thus: 10010110
(150 if unsigned, -106 if signed) → 0110
(6).