in src/main/java/com/spotify/futures/FuturesExtra.java [670:678]
public static <Z, A, B, C, D, E> ListenableFuture<Z> syncTransform5(
ListenableFuture<A> a,
ListenableFuture<B> b,
ListenableFuture<C> c,
ListenableFuture<D> d,
ListenableFuture<E> e,
final Function5<Z, ? super A, ? super B, ? super C, ? super D, ? super E> function) {
return syncTransform5(a, b, c, d, e, function, MoreExecutors.directExecutor());
}