Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
ToImmutableSortedSet< TSource >()
[2/3]
static
ImmutableSortedSet
< TSource >
System.Collections.Immutable.ImmutableSortedSet
<
T
>.
ToImmutableSortedSet
< TSource >
(
this
IEnumerable
< TSource >
source
,
IComparer
< TSource >?
comparer
)
inline
static
Definition at line
62
of file
ImmutableSortedSet.cs
.
63
{
64
if
(
source
is
ImmutableSortedSet<TSource>
immutableSortedSet
)
65
{
66
return
immutableSortedSet
.WithComparer(
comparer
);
67
}
68
return
ImmutableSortedSet<TSource>
.Empty.WithComparer(
comparer
).Union(
source
);
69
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.ExceptionArgument.source
@ source
System.ExceptionArgument.comparer
@ comparer
References
System.comparer
, and
System.source
.
System
Collections
Immutable
ImmutableSortedSet
Generated by
1.10.0