net.serenitybdd.screenplay.rest.questions.TriFunction Maven / Gradle / Ivy
package net.serenitybdd.screenplay.rest.questions;
import java.util.Objects;
import java.util.function.Function;
@FunctionalInterface
interface TriFunction {
R apply(A a, B b, C c);
default TriFunction andThen(
Function super R, ? extends V> after) {
Objects.requireNonNull(after);
return (A a, B b, C c) -> after.apply(apply(a, b, c));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy