in core/src/main/java/org/apache/commons/functor/generator/loop/UntilGenerate.java [66:75]
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof UntilGenerate<?>)) {
return false;
}
UntilGenerate<?> other = (UntilGenerate<?>) obj;
return other.getWrappedGenerator().equals(getWrappedGenerator()) && other.test.equals(test);
}