1 write to _key
System.Collections.Immutable (1)
System\Collections\Immutable\SortedInt32KeyNode.cs (1)
85_key = key;
12 references to _key
System.Collections.Immutable (12)
System\Collections\Immutable\SortedInt32KeyNode.cs (12)
122get { return new KeyValuePair<int, TValue>(_key, _value!); } 191if (key == node._key) 196if (key > node._key) 224if (key == node._key) 230if (key > node._key) 249freezeAction?.Invoke(new KeyValuePair<int, TValue>(_key, _value!)); 417if (key > _key) 425else if (key < _key) 473if (key == _key) 503SortedInt32KeyNode<TValue> newRight = _right.Remove(successor._key, out _); 507else if (key < _key) 541return new SortedInt32KeyNode<TValue>(_key, _value!, left ?? _left, right ?? _right);