ConcurrentHashSet<T>
Namespace: uModCollections
Assembly: uMod.Core.dll
Inheritance Object ConcurrentHashSet
Implements ICollection<T>, IEnumerable<T>, IEnumerable
Summary
A partially thread-safe HashSet (iterating is not thread-safe)
Constructors
Name | Summary |
|---|---|
ConcurrentHashSet () | Create a new concurrent hashset object |
ConcurrentHashSet (IEnumerable< | |
ConcurrentHashSet ( |
Properties
Name | Summary |
|---|---|
Count | Get the number of elements stored in the hashset |
IsReadOnly |
Methods
Name | Summary |
|---|---|
Add ( | |
Clear () | Clear all values from the hashset |
Contains ( | |
GetEnumerator () | Get a strongly-typed enumerator for the hashset (not thread safe) |
Remove ( | |
ToArray () | Get the array of items stored in the hashset |
TryDequeue (out |