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