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

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

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

import java.util.function.Consumer;

import xdean.codecov.CodecovIgnore;

@CodecovIgnore
@FunctionalInterface
public interface Action1 extends Consumer {
  void call(A a);

  @Override
  default void accept(A a) {
    call(a);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy