Class OuterZipped<Left,Right,Result>

java.lang.Object
org.dmfs.jems2.iterable.OuterZipped<Left,Right,Result>
All Implemented Interfaces:
Iterable<Result>

public final class OuterZipped<Left,Right,Result> extends Object implements Iterable<Result>
/** An Iterable combining the elements of two given Iterables using a BiFunction.

In contrast to Zipped, this returns as many results as the longer of the two given Iterables. The given BiFunction receives Optionals, which are absent for the shorter Iterable when it runs out of elements.