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

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

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

/**
 * Represents a function that accepts one argument and produces a result.
 *
 * 

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy