com.tukeof.common.function.TetraConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-core Show documentation
Show all versions of common-core Show documentation
a common and useful pure java library
The newest version!
package com.tukeof.common.function;
@FunctionalInterface
public interface TetraConsumer {
void accept(T1 v1, T2 v2, T3 v3, T4 v4);
}