marcel.lang.util.function.CharFunction Maven / Gradle / Ivy
package marcel.lang.util.function;
@FunctionalInterface
public interface CharFunction {
/**
* Applies this function to the given argument.
*
* @param value the function argument
* @return the function result
*/
R apply(char value);
}