com.tukeof.common.function.TrinaryOperator 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 TrinaryOperator {
T apply(T v1, T v2, T v3);
}