All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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