in src/main/java/com/spotify/futures/FuturesExtra.java [456:462]
public static <Z, A, B, C> ListenableFuture<Z> syncTransform3(
ListenableFuture<A> a,
ListenableFuture<B> b,
ListenableFuture<C> c,
final Function3<Z, ? super A, ? super B, ? super C> function) {
return syncTransform3(a, b, c, function, MoreExecutors.directExecutor());
}