Sequence ToI128

std/conversion/vector/u64::ToI128


Inputs

value: Stream<Vec<u64>>

Outputs

↦ value: Stream<Vec<i128>>


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

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