Table of Contents

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

T

The type of the elements.

Inherited Members
Extension Methods

Methods

Contains(T)

Determines whether the set [contains] [the specified item].

bool Contains(T item)

Parameters

item T

The item.

Returns

bool

true if the set [contains] [the specified item]; otherwise, false.