public boolean equals()

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


    public boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (!(obj instanceof ConditionalNullaryProcedure)) {
            return false;
        }
        ConditionalNullaryProcedure that = (ConditionalNullaryProcedure) obj;
        return this.ifPred.equals(that.ifPred)
                && this.thenProc.equals(that.thenProc)
                && this.elseProc.equals(that.elseProc);
    }