
com.azure.cosmos.implementation.query.TriFunction Maven / Gradle / Ivy
package com.azure.cosmos.implementation.query;
/**
* A functional interface (callback) that computes a value based on multiple input values.
* @param the first value type
* @param the second value type
* @param the third value type
* @param the result type
*/
@FunctionalInterface
public interface TriFunction {
/**
* Applies this function to the given arguments.
*
* @param t the first function argument
* @param u the second function argument
* @param v the third function argument
* @return the function result
*/
R apply(T t, U u, V v);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy