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

xxl.mathematica.function.Function Maven / Gradle / Ivy

package xxl.mathematica.function;

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

public interface Function {
    /**
     * Applies this function to the given argument.
     *
     * @param t the function argument
     * @return the function result
     */
    R apply(T t);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy