public boolean equals()

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


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