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

io.polaris.core.function.ConsumerWithArgs5 Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package io.polaris.core.function;

/**
 * @author Qt
 * @since 1.8
 */
@FunctionalInterface
public interface ConsumerWithArgs5 {

	void accept(A a, B b, C c, D d, E e);

	default ConsumerWithArgs5 andThen(ConsumerWithArgs5 after) {
		return (a, b, c, d, e) -> {
			accept(a, b, c, d, e);
			after.accept(a, b, c, d, e);
		};
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy