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

◆ ContainsAllElements()

bool System.Collections.Generic.SortedSet< T >.ContainsAllElements ( IEnumerable< T > collection)
inlineprivateinherited

Definition at line 829 of file SortedSet.cs.

830 {
831 foreach (T item in collection)
832 {
833 if (!Contains(item))
834 {
835 return false;
836 }
837 }
838 return true;
839 }

References System.collection, System.Collections.Generic.SortedSet< T >.Contains(), and System.item.

Referenced by System.Collections.Generic.SortedSet< T >.IsSupersetOf().