public boolean add(K key) { if (contains(key)) { return(false); } map.put(key, unused); return(true); }
public boolean add(Object key) { if (contains(key)) { return(false); } map.put(key, UNUSED); return(true); }