core/src/main/java/org/apache/commons/functor/adapter/LeftBoundFunction.java [80:89]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public int hashCode() {
        int hash = "LeftBoundFunction".hashCode();
        hash <<= 2;
        hash ^= function.hashCode();
        if (null != param) {
            hash <<= 2;
            hash ^= param.hashCode();
        }
        return hash;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



core/src/main/java/org/apache/commons/functor/adapter/RightBoundFunction.java [79:88]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public int hashCode() {
        int hash = "RightBoundFunction".hashCode();
        hash <<= 2;
        hash ^= function.hashCode();
        if (null != param) {
            hash <<= 2;
            hash ^= param.hashCode();
        }
        return hash;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



