4 writes to _current
Microsoft.CodeAnalysis (4)
src\Dependencies\Collections\SegmentedDictionary`2.cs (4)
1187
_current
= default;
1205
_current
= new KeyValuePair<TKey, TValue>(entry._key, entry._value);
1211
_current
= default;
1247
_current
= default;
9 references to _current
Microsoft.CodeAnalysis (9)
src\Dependencies\Collections\SegmentedDictionary`2.cs (9)
1215
public readonly KeyValuePair<TKey, TValue> Current =>
_current
;
1232
return new DictionaryEntry(
_current
.Key,
_current
.Value);
1235
return new KeyValuePair<TKey, TValue>(
_current
.Key,
_current
.Value);
1259
return new DictionaryEntry(
_current
.Key,
_current
.Value);
1272
return
_current
.Key;
1285
return
_current
.Value;