in core/src/main/java/org/apache/commons/functor/core/composite/CompositeBinaryPredicate.java [120:131]
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof CompositeBinaryPredicate<?, ?>)) {
return false;
}
CompositeBinaryPredicate<?, ?> that = (CompositeBinaryPredicate<?, ?>) obj;
return this.helper.f.equals(that.helper.f)
&& this.helper.g.equals(that.helper.g)
&& this.helper.h.equals(that.helper.h);
}