return false;
}
return
forEachPair(
new IntFloatProcedure() {
@Override
public boolean apply(int key, float value) {
return other.containsKey(key) && other.get(key) == value;
}
}
)
&&
other.forEachPair(
new IntFloatProcedure() {
@Override
public boolean apply(int key, float value) {
return containsKey(key) && get(key) == value;
}
}