Waits for this and other (running in parallel) and then maps the result with f. @param other The other future that becomes the second parameter of f. @param f the mapping function. The first parameter is the result of this and the second the result of other. @return the m
(Future<U> other, BiFunction<? super T, ? super U, ? extends R> f)
| 433 | * @return the mapped future. |
| 434 | */ |
| 435 | <U, R> Future<R> biMap(Future<U> other, BiFunction<? super T, ? super U, ? extends R> f); |
| 436 | |
| 437 | /** |
| 438 | * Waits for this and other (running in parallel), maps the result with f, and |
no outgoing calls