default Function3 andThen()

in src/main/java/com/spotify/futures/Function3.java [67:70]


  default <V> Function3<A, B, C, V> andThen(Function<? super R, ? extends V> after) {
    Objects.requireNonNull(after);
    return (A a, B b, C c) -> after.apply(apply(a, b, c));
  }