All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.serenitybdd.screenplay.rest.questions.TriFunction Maven / Gradle / Ivy

There is a newer version: 4.2.9
Show newest version
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 after) {
        Objects.requireNonNull(after);
        return (A a, B b, C c) -> after.apply(apply(a, b, c));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy