Swaps everything between the two maps.
| 1673 | |
| 1674 | // Swaps everything between the two maps. |
| 1675 | void swap(Table& o) { |
| 1676 | ROBIN_HOOD_TRACE(this) |
| 1677 | using std::swap; |
| 1678 | swap(o, *this); |
| 1679 | } |
| 1680 | |
| 1681 | // Clears all data, without resizing. |
| 1682 | void clear() { |