Table of Contents

Interface IStore<T>

Namespace
Org.BouncyCastle.Utilities.Collections
Assembly
BouncyCastle.Cryptography.dll

A generic interface describing a simple store of objects.

public interface IStore<out T>

Type Parameters

T

The covariant type of stored objects.

Methods

EnumerateMatches(ISelector<T>)

Enumerate the (possibly empty) collection of objects matched by the given selector.

IEnumerable<out T> EnumerateMatches(ISelector<out T> selector)

Parameters

selector ISelector<T>

The ISelector<T> used to select matching objects.

Returns

IEnumerable<T>

An IEnumerable<T> of the matching objects.