pub fn zip<A, B>(a: Source<A>, b: Source<B>) -> Source<(A, B)>where A: Send + 'static, B: Send + 'static,
Pair corresponding elements.