ImmutableSortedSet<T>::TryGetValue Method (T, T%)
Searches the set for a given value and returns the equal value it finds, if any.
Assembly: System.Collections.Immutable (in System.Collections.Immutable.dll)
Parameters
- equalValue
-
Type:
T
The value to search for.
- actualValue
-
Type:
T%
The value from the set that the search found, or the original value if the search yielded no match.
Implements
IImmutableSet<T>::TryGetValue(T, T%)This can be useful when you want to reuse a previously stored reference instead of a newly constructed one (so that more sharing of references can occur) or to look up a value that has more complete data than the value you currently have, although their comparer functions indicate they are equal.
NuGet package: System.Collections.Immutable (about immutable collections and how to install)
Show: