Sequence U128ToI128

std/conversion/scalar/to_i128::U128ToI128


Parameters

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

Inputs

value: Stream<u128>

Outputs

↦ value: Stream<i128>


Convert stream of u128 into i128.

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