3 writes to firstItemIndex
mscorlib (3)
system\runtime\interopservices\windowsruntime\constantsplittablemap.cs (3)
56this.firstItemIndex = 0; 75this.firstItemIndex = 0; 84this.firstItemIndex = firstItemIndex;
7 references to firstItemIndex
mscorlib (7)
system\runtime\interopservices\windowsruntime\constantsplittablemap.cs (7)
121return lastItemIndex - firstItemIndex + 1; 129return (UInt32)(lastItemIndex - firstItemIndex + 1); 169return new IKeyValuePairEnumerator(items, firstItemIndex, lastItemIndex); 181int pivot = (Int32)(((Int64)firstItemIndex + (Int64)lastItemIndex) / (Int64)2); 183firstPartition = new ConstantSplittableMap<TKey, TValue>(items, firstItemIndex, pivot); 192int index = Array.BinarySearch(items, firstItemIndex, Count, searchKey, keyValuePairComparator); 199int index = Array.BinarySearch(items, firstItemIndex, Count, searchKey, keyValuePairComparator);