olon.common.Func1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of olon-common_2.12 Show documentation
Show all versions of olon-common_2.12 Show documentation
Common Libraties and Utilities
The newest version!
package olon.common;
/**
* A one argument function that returns
* something of type Z
*/
public interface Func1 {
/**
* Apply the function
*/
public Z apply(A a);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy