1 override of FindNode
System.Collections (1)
System\Collections\Generic\SortedSet.TreeSubSet.cs (1)
276
internal override SortedSet<T>.Node?
FindNode
(T item)
8 references to FindNode
System.Collections (8)
System\Collections\Generic\SortedDictionary.cs (5)
66
TreeSet<KeyValuePair<TKey, TValue>>.Node? node = _set.
FindNode
(keyValuePair);
84
TreeSet<KeyValuePair<TKey, TValue>>.Node? node = _set.
FindNode
(keyValuePair);
112
TreeSet<KeyValuePair<TKey, TValue>>.Node? node = _set.
FindNode
(new KeyValuePair<TKey, TValue>(key, default(TValue)!));
124
TreeSet<KeyValuePair<TKey, TValue>>.Node? node = _set.
FindNode
(new KeyValuePair<TKey, TValue>(key, default(TValue)!));
261
TreeSet<KeyValuePair<TKey, TValue>>.Node? node = _set.
FindNode
(new KeyValuePair<TKey, TValue>(key, default(TValue)!));
System\Collections\Generic\SortedSet.cs (2)
507
public virtual bool Contains(T item) =>
FindNode
(item) != null;
2003
Node? node =
FindNode
(equalValue);
System\Collections\Generic\SortedSet.TreeSubSet.cs (1)
287
return base.
FindNode
(item);