public final boolean equals()

in core/src/main/java/org/apache/commons/functor/core/composite/TransformedNullaryFunction.java [90:100]


    public final boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (!(obj instanceof TransformedNullaryFunction<?>)) {
            return false;
        }
        TransformedNullaryFunction<?> that = (TransformedNullaryFunction<?>) obj;
        return this.helper.preceding.equals(that.helper.preceding)
                && this.helper.following.equals(that.helper.following);
    }