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

◆ MutationInput() [2/2]

System.Collections.Immutable.ImmutableHashSet< T >.MutationInput.MutationInput ( SortedInt32KeyNode< HashBucket > root,
IEqualityComparer< T > equalityComparer,
IEqualityComparer< HashBucket > hashBucketEqualityComparer,
int count )
inlinepackage

Definition at line 606 of file ImmutableHashSet.cs.

607 {
608 Requires.NotNull(root, "root");
609 Requires.NotNull(equalityComparer, "equalityComparer");
610 Requires.Range(count >= 0, "count");
611 Requires.NotNull(hashBucketEqualityComparer, "hashBucketEqualityComparer");
612 _root = root;
614 _count = count;
616 }
readonly IEqualityComparer< HashBucket > _hashBucketEqualityComparer

References System.Collections.Immutable.ImmutableHashSet< T >.MutationInput._count, System.Collections.Immutable.ImmutableHashSet< T >.MutationInput._equalityComparer, System.Collections.Immutable.ImmutableHashSet< T >.MutationInput._hashBucketEqualityComparer, System.Collections.Immutable.ImmutableHashSet< T >.MutationInput._root, System.count, and System.Collections.Immutable.Requires.Range().