Table of Contents

Struct FlatHashSetStringView

Namespace
SampSharp.OpenMp.Core.RobinHood
Assembly
SampSharp.OpenMp.Core.dll

Represent a pointer to an robin_hood::unordered_flat_set of StringView values. robin_hood::unordered_flat_set is part of the robin_hood C++ library.

public readonly struct FlatHashSetStringView : IReadOnlyCollection<string?>, IEnumerable<string?>, IEnumerable
Implements
Inherited Members

Properties

Count

Gets the number of elements in this set.

public int Count { get; }

Property Value

int

Methods

Emplace(string)

Adds a value to this set.

public void Emplace(string value)

Parameters

value string

The value to add.

GetEnumerator()

public IEnumerator<string?> GetEnumerator()

Returns

IEnumerator<string>