public boolean equals()

in core/src/main/java/org/apache/commons/functor/generator/loop/GenerateUntil.java [65:74]


    public boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (!(obj instanceof GenerateUntil<?>)) {
            return false;
        }
        GenerateUntil<?> other = (GenerateUntil<?>) obj;
        return other.getWrappedGenerator().equals(getWrappedGenerator()) && other.test.equals(test);
    }