Iterable<Pair<Optional<Left>,Optional<Right>>>
Iterable
Note, to get correct results, the Iterables must be sorted by the comparison criterion.
Diff([1,3,5,7], [3,4,5], Integer::compareTo) -> [ (1, -), (3, 3), (-, 4), (5, 5), (7, -) ]
Diff(Iterable<Left> lefts, Iterable<Right> rights, BiFunction<? super Left,? super Right,Integer> comparatorFunction)
Iterator<Pair<Optional<Left>,Optional<Right>>>
iterator()
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEach, spliterator
iterator
Iterable<Left>