if (elements instanceof ObjSet) {
ObjSet elemSet = (ObjSet) elements;
if (elements instanceof SeparateKVObjDHash) {
SeparateKVObjDHash hash = (SeparateKVObjDHash) elements;
if (hash.hashConfig().equals(hashConf) &&
elemSet.equivalence().equals(getEquivalence())) {
MutableDHashObjSetGO<E2> set = uninitializedMutableSet();
set.copy(hash);
return set;
}
}