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

xdean.jex.extra.function.Func1 Maven / Gradle / Ivy

The newest version!
package xdean.jex.extra.function;

import java.util.function.Function;

import xdean.codecov.CodecovIgnore;

@CodecovIgnore
@FunctionalInterface
public interface Func1 extends Function {
  R call(A a);

  @Override
  default R apply(A a) {
    return call(a);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy