com.ajjpj.abase.function.APredicate3 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of a-base Show documentation
Show all versions of a-base Show documentation
a-base is a library of basic (hence the name) classes, most notably immutable collection classes with copy-on-write operations
The newest version!
package com.ajjpj.abase.function;
import java.io.Serializable;
public interface APredicate3 extends Serializable {
boolean apply (T1 o1, T2 o2, T3 o3) throws E;
}