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

com.microsoft.kiota.PentaFunction Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.microsoft.kiota;

/** Represents a callback accepting 5 values and returning a result */
public interface PentaFunction {
    /**
     * Applies the callback
     * @param t the first value
     * @param u the second value
     * @param v the third value
     * @param w the fourth value
     * @param x the fifth value
     * @return the result of the callback
     */
    R apply(T t, U u, V v, W w, X x);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy