Sequence I32ToU128

std/conversion/scalar/to_u128::I32ToU128


Parameters

↳ var truncate: bool = true
↳ var or_default: u128 = 0

Inputs

value: Stream<i32>

Outputs

↦ value: Stream<u128>


Convert stream of i32 into u128.

As this conversion might be lossy (every possible i32 value cannot fit into u128), truncate allows value to be truncated to fit into a u128, and or_default set the value that is assigned when a i32 is out of range for u128 and truncation not allowed.