ISelector<T>
Interface for matching objects in an IStore<T>.
using System;
namespace Org.BouncyCastle.Utilities.Collections
{
public interface ISelector<in T> : ICloneable
{
bool Match(T candidate);
}
}