3 writes to lastItemIndex
mscorlib (3)
system\runtime\interopservices\windowsruntime\constantsplittablemap.cs (3)
57this.lastItemIndex = data.Count - 1; 76this.lastItemIndex = size - 1; 85this.lastItemIndex = lastItemIndex;
5 references to lastItemIndex
mscorlib (5)
system\runtime\interopservices\windowsruntime\constantsplittablemap.cs (5)
121return lastItemIndex - firstItemIndex + 1; 129return (UInt32)(lastItemIndex - firstItemIndex + 1); 169return new IKeyValuePairEnumerator(items, firstItemIndex, lastItemIndex); 181int pivot = (Int32)(((Int64)firstItemIndex + (Int64)lastItemIndex) / (Int64)2); 184secondPartition = new ConstantSplittableMap<TKey, TValue>(items, pivot + 1, lastItemIndex);