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

org.nd4j.linalg.function.Function Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
package org.nd4j.linalg.function;

/**
 * A Function accepts one argument and returns a result
 * @param  Type of the argument
 * @param  Type of the result
 */
public interface Function {

    /**
     * Apply the function to the argument, and return the result
     *
     * @param t Input
     * @return Result
     */
    R apply (T t);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy