in core/src/main/java/org/apache/commons/functor/adapter/FullyBoundNullaryProcedure.java [66:77]
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof FullyBoundNullaryProcedure)) {
return false;
}
FullyBoundNullaryProcedure that = (FullyBoundNullaryProcedure) obj;
return procedure.equals(that.procedure)
&& (null == left ? null == that.left : left.equals(that.left))
&& (null == right ? null == that.right : right.equals(that.right));
}