2 writes to _key
System.Collections.Immutable (2)
System\Collections\Immutable\ImmutableSortedSet_1.Node.cs (2)
87_key = key; 249return ref _key;
11 references to _key
System.Collections.Immutable (11)
System\Collections\Immutable\ImmutableSortedSet_1.Node.cs (11)
133public T Value { get { return _key; } } 148get { return _key; } 170return n._key; 193return n._key; 219return _key; 351int compareResult = comparer.Compare(key, _key); 398int compare = comparer.Compare(key, _key); 429ImmutableSortedSet<T>.Node newRight = _right.Remove(successor._key, comparer, out _); 499int compare = comparer.Compare(key, _key); 532int compare = comparer.Compare(key, _key); 751return new Node(_key, left ?? _left, right ?? _right);