![JAR search and dependency download from the Maven repository](/logo.png)
com.github.mictaege.lenientfun.LenientUnaryOperator Maven / Gradle / Ivy
package com.github.mictaege.lenientfun;
/** @see java.util.function.UnaryOperator */
@FunctionalInterface
public interface LenientUnaryOperator extends LenientFunction {
static LenientUnaryOperator identity() {
return t -> t;
}
}