Removes all mappings from this RBTreeMap.
()
| 512 | * Removes all mappings from this RBTreeMap. |
| 513 | */ |
| 514 | @Override |
| 515 | public void clear() { |
| 516 | modCount++; |
| 517 | size = 0; |
| 518 | root = null; |
| 519 | } |
| 520 | |
| 521 | /** |
| 522 | * Returns a shallow copy of this <tt>RBTreeMap</tt> instance. (The keys and |
no outgoing calls