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