
org.xillium.base.Functor Maven / Gradle / Ivy
package org.xillium.base;
/**
* A Functor embodies a single-argument function.
*/
public interface Functor {
/**
* Invokes the function on the sole argument.
*
* @param argument the sole argument to pass to the functor
* @return a return value
*/
public T invoke(V argument);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy