Checks if map is empty.
()
| 176 | |
| 177 | // Checks if map is empty. |
| 178 | func (m ConcurrentHashMap) IsEmpty() bool { |
| 179 | return m.Count() == 0 |
| 180 | } |
| 181 | |
| 182 | // Used by the Iter & IterBuffered functions to wrap two variables together over a channel, |
| 183 | type Tuple struct { |