public final boolean equals()

in core/src/main/java/org/apache/commons/functor/core/composite/TransformedBinaryFunction.java [92:102]


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