IStore<T>
A generic interface describing a simple store of objects.
using System.Collections.Generic;
namespace Org.BouncyCastle.Utilities.Collections
{
public interface IStore<out T>
{
IEnumerable<T> EnumerateMatches(ISelector<T> selector);
}
}