this.map = IdentityMap.instantiate( 10 );
return map.put( o, DUMP_VALUE) == null;
Iterator it = c.iterator(); boolean changed = false; while ( it.hasNext() ) { if ( this.add( it.next() ) ) changed = true; } return changed;
map.clear();
return map.get( o ) == DUMP_VALUE;
Iterator it = c.iterator(); while ( it.hasNext() ) { if ( ! map.containsKey( it.next() ) ) return false; } return true;
return map.isEmpty();
return map.entrySet().iterator();
return map.remove( o ) == DUMP_VALUE;
Iterator it = c.iterator(); boolean changed = false; while ( it.hasNext() ) { if ( this.remove( it.next() ) ) changed = true; } return changed;
//doable if needed throw new UnsupportedOperationException();
return map.size();
return map.entrySet().toArray();
return map.entrySet().toArray(a);