(List<TValue> values)
| 157 | } |
| 158 | |
| 159 | internal void AddValuesTo(List<TValue> values) |
| 160 | { |
| 161 | for (int i = 0; i < _tableCapacity; i++) |
| 162 | { |
| 163 | if (_entries[i].Key != EmptyKey) |
| 164 | { |
| 165 | values.Add(_entries[i].Value); |
| 166 | } |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | [MethodImpl(MethodImplOptions.AggressiveInlining)] |
| 171 | private int FindSlotForInsert(ulong key) |