public boolean equals()

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


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