blob: 3a71350079f24cb8ea7209413afe123e428e20aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
using System;
using System.Collections.Generic;
namespace 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;
}
}
}
}
|