Sequence ToI128

std/conversion/vector/u32::ToI128


Inputs

value: Stream<Vec<u32>>

Outputs

↦ value: Stream<Vec<i128>>


Convert stream of Vec<u32> into Vec<i128> one.

Vec<u32> gets converted into Vec<i128>, and the resulting vectors are send through stream in continuity. This conversion is lossless, u32 values can all fit into i128.