示例#1
0
 public void putAll(TCharShortMap map) {
   ensureCapacity(map.size());
   TCharShortIterator iter = map.iterator();
   while (iter.hasNext()) {
     iter.advance();
     put(iter.key(), iter.value());
   }
 }