public final boolean equals()

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


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