/** * Zips this stream with another point-wise, and keeps only elements from the * other stream. * * The provided default value will be used if this stream ends before the * other one. * * @tsplus static effect/core/stream/Stream.Aspects zipAllRight * @tsplus pipeable effect/core/stream/Stream zipAllRight */ export function zipAllRight(that: Stream, def: A2) { return (self: Stream): Stream => self.zipAllWith(that, () => def, identity, (_, a2) => a2) }