map.ensureCapacity(maxPossibleSize);
if (another instanceof ByteShortMap) {
if (another instanceof InternalByteShortMapOps) {
((InternalByteShortMapOps) another).reversePutAllTo(map);
} else {
((ByteShortMap) another).forEach(new /*f*/ByteShortConsumer/*<>*/() {
@Override
public void accept(byte key, short value) {
map.justPut(key, value);
}
});