Beispiel #1
0
 private void EnumerateCore(IOrderedMap <int, float> map, int count, bool fast)
 {
     for (int i = 0; i < count; i++)
     {
         map.Add(i, i);
     }
     foreach (EntryMap <int, float> entry in fast ? map.GetFastEnumerable() : map.GetRobustEnumerable())
     {
     }
 }