Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CreateRange< TKey, TValue >() [2/3]

static ImmutableSortedDictionary< TKey, TValue > System.Collections.Immutable.ImmutableSortedDictionary< TKey, TValue >.CreateRange< TKey, TValue > ( IComparer< TKey >? keyComparer,
IEqualityComparer< TValue >? valueComparer,
IEnumerable< KeyValuePair< TKey, TValue > > items )
inlinestatic
Type Constraints
TKey :notnull 

Definition at line 37 of file ImmutableSortedDictionary.cs.

37 : notnull
38 {
39 return ImmutableSortedDictionary<TKey, TValue>.Empty.WithComparers(keyComparer, valueComparer).AddRange(items);
40 }
void AddRange(IEnumerable< KeyValuePair< TKey, TValue > > collection)

References System.Collections.Generic.Dictionary< TKey, TValue >.AddRange().