MCPcopy Create free account
hub / github.com/apache/fory / AddValuesTo

Method AddValuesTo

csharp/src/Fory/FlatMap.cs:159–168  ·  view source on GitHub ↗
(List<TValue> values)

Source from the content-addressed store, hash-verified

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)

Callers 1

ComputeVersionHashMethod · 0.80

Calls 1

AddMethod · 0.45

Tested by

no test coverage detected