1 write to _map
Microsoft.CodeAnalysis (1)
InternalUtilities\ImmutableSetWithInsertionOrder`1.cs (1)
22_map = map;
13 references to _map
Microsoft.CodeAnalysis (13)
InternalUtilities\ImmutableSetWithInsertionOrder`1.cs (13)
28get { return _map.Count; } 33return _map.ContainsKey(value); 39if (_map.ContainsKey(value)) 44return new ImmutableSetWithInsertionOrder<T>(_map.Add(value, _nextElementValue), _nextElementValue + 1u); 57if (_map.ContainsKey(value)) 62builder = _map.ToBuilder(); 84var modifiedMap = _map.Remove(value); 85if (modifiedMap == _map) 103if (!_map.ContainsKey(value)) 108builder = _map.ToBuilder(); 124get { return _map.OrderBy(kv => kv.Value).Select(kv => kv.Key); } 134return _map.Keys.GetEnumerator(); 139return _map.Keys.GetEnumerator();