![JAR search and dependency download from the Maven repository](/logo.png)
com.github.oxo42.stateless4j.delegates.Func2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stateless4j Show documentation
Show all versions of stateless4j Show documentation
A fluent interface for state machines
package com.github.oxo42.stateless4j.delegates;
/**
* Represents a function that accepts an input and produces a result
*
* @param Input argument type
* @param Result type
*/
public interface Func2 {
/**
* Applies this function to the given input
*
* @param arg1 Input argument
* @return Result
*/
R call(T1 arg1);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy