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

com.azure.cosmos.implementation.query.TriFunction Maven / Gradle / Ivy

Go to download

This Package contains Microsoft Azure Cosmos SDK (with Reactive Extension Reactor support) for Azure Cosmos DB SQL API

There is a newer version: 4.61.1
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy