com.azure.cosmos.implementation.query.TriFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-cosmos Show documentation
Show all versions of azure-cosmos Show documentation
This Package contains Microsoft Azure Cosmos SDK (with Reactive Extension Reactor support) for Azure Cosmos DB SQL API
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);
}