![JAR search and dependency download from the Maven repository](/logo.png)
com.g2forge.alexandria.java.function.IConsumer2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-java Show documentation
Show all versions of ax-java Show documentation
Standard Java library and the basis of the ${alexandria.name} project.
package com.g2forge.alexandria.java.function;
import java.util.function.BiConsumer;
@FunctionalInterface
public interface IConsumer2 extends BiConsumer, IConsumer {
public static IConsumer2 create(IConsumer2 consumer) {
return consumer;
}
public default IConsumer1 curry0(I0 input0) {
return input1 -> this.accept(input0, input1);
}
public default IConsumer1 curry1(I1 input1) {
return input0 -> this.accept(input0, input1);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy