These operations have been replaced by `lazyZip`: ~~~ scala // old style (xs, ys).zipped.map((x, y) => x + y) // new style xs.lazyZip(ys).map((x, y) => x + y) ~~~ We should deprecate the implicit conversion that makes the `zipped` operation available.