Treatment toByte

conv/string::toByte


Inputs

⇥ value: Stream<string>

Outputs

↦ data: Stream<Vec<byte>>


Turns string stream into byte one.

Each string gets converted into Vec<byte>, with each vector containing the bytes of the former scalar string it represents.

ℹ️ The Vec<byte> obtained from a string is the UTF-8 representation of it.