Interface IReadOnlySet<T>
- Namespace
 - Stride.Core.Collections
 
- Assembly
 - Stride.Core.dll
 
Represents a strongly-typed, read-only set of element.
public interface IReadOnlySet<T> : IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable
  Type Parameters
TThe type of the elements.
- Inherited Members
 
- Extension Methods
 
Methods
Contains(T)
Determines whether the set [contains] [the specified item].
bool Contains(T item)
  Parameters
itemTThe item.
Returns
- bool
 trueif the set [contains] [the specified item]; otherwise,false.