dmfs / jems

Java gems, a collection of Java utilities.
Apache License 2.0
5 stars 2 forks source link

OuterZipped, LeftZipped, RightZipped Iterables #327

Closed dmfs closed 2 years ago

dmfs commented 2 years ago

These are comparable to SQL's outer join, etc, in that they return a result for every input value. The existing Zip would be the equivalent to an inner join. The respective BiFunction would take Optionals that are absent when one of the input Iterables has ended.

dmfs commented 2 years ago

done