public final boolean equals()

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


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