()
| 146 | } |
| 147 | |
| 148 | internal void ClearKeys() |
| 149 | { |
| 150 | if (_count == 0) |
| 151 | { |
| 152 | return; |
| 153 | } |
| 154 | |
| 155 | ClearEntryKeys(_entries, _tableCapacity); |
| 156 | _count = 0; |
| 157 | } |
| 158 | |
| 159 | internal void AddValuesTo(List<TValue> values) |
| 160 | { |
no outgoing calls
no test coverage detected