Sequence ToI32

std/conversion/vector/u8::ToI32


Inputs

value: Stream<Vec<u8>>

Outputs

↦ value: Stream<Vec<i32>>


Convert stream of Vec<u8> into Vec<i32> one.

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