public boolean equals()

in core/src/main/java/org/apache/commons/functor/adapter/LeftBoundPredicate.java [64:74]


    public boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (!(obj instanceof LeftBoundPredicate<?>)) {
            return false;
        }
        LeftBoundPredicate<?> that = (LeftBoundPredicate<?>) obj;
        return predicate.equals(that.predicate)
                && (null == param ? null == that.param : param.equals(that.param));
    }