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

zmq.util.function.BiFunction Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
package zmq.util.function;

/**
 * Represents a function that accepts two arguments and produces a result.
 * This is the two-arity specialization of {@link Function}.
 *
 * 

This is a functional interface * whose functional method is {@link #apply(Object, Object)}. * * @param the type of the first argument to the function * @param the type of the second argument to the function * @param the type of the result of the function * * @see Function */ public interface BiFunction { /** * Applies this function to the given arguments. * * @param t the first function argument * @param u the second function argument * @return the function result */ R apply(T t, U u); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy