in core/src/main/java/org/apache/commons/functor/core/algorithm/PredicatedLoop.java [65:74]
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (obj == null || !obj.getClass().equals(getClass())) {
return false;
}
PredicatedLoop other = (PredicatedLoop) obj;
return other.body.equals(body) && other.test.equals(test);
}