Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Treatment concat

std/ops/vec::concat


Generics

◻ T (any)

Inputs

⇥ first: Stream<Vec<T>>
⇥ second: Stream<Vec<T>>

Outputs

↦ concatened: Stream<Vec<T>>


Pair-wise concatenation over two streams.

For each (first, second) pair received from the two streams, append second to first and emit the result through concatened.