![JAR search and dependency download from the Maven repository](/logo.png)
xdean.jex.extra.function.Func0 Maven / Gradle / Ivy
The newest version!
package xdean.jex.extra.function;
import java.util.function.Supplier;
import xdean.codecov.CodecovIgnore;
@CodecovIgnore
@FunctionalInterface
public interface Func0 extends Supplier {
R call();
@Override
default R get() {
return call();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy