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

arez.Function Maven / Gradle / Ivy

There is a newer version: 0.213
Show newest version
package arez;

/**
 * Functional interface for returning a value.
 *
 * @param  The type of the returned value.
 */
@FunctionalInterface
public interface Function
{
  /**
   * Return a value.
   *
   * @return the value generated by function.
   * @throws Throwable if unable to return value.
   */
  T call()
    throws Throwable;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy