Files
2026-07-03 05:02:26 +03:00

30 lines
756 B
C#

#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
using System.Collections.Generic;
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections
{
internal sealed class StoreImpl<T>
: IStore<T>
{
private readonly List<T> m_contents;
internal StoreImpl(IEnumerable<T> e)
{
m_contents = new List<T>(e);
}
IEnumerable<T> IStore<T>.EnumerateMatches(ISelector<T> selector)
{
foreach (T candidate in m_contents)
{
if (selector == null || selector.Match(candidate))
yield return candidate;
}
}
}
}
#pragma warning restore
#endif