Interface IDirectedCollectionValue<T>
A sized generic collection, that can be enumerated backwards.
Inherited Members
Assembly: DistributedLucene.Net.dll
Syntax
public interface IDirectedCollectionValue<T> : ICollectionValue<T>, IShowable, IFormattable, IDirectedEnumerable<T>, Collections.Generic.IEnumerable<T>
Type Parameters
Name | Description |
---|---|
T |
Methods
Name | Description |
---|---|
Backwards() | Create a collection containing the same items as this collection, but whose enumerator will enumerate the items backwards. The new collection will become invalid if the original is modified. Method typically used as in
|
FindLast(Func<T, Boolean>, out T) | Check if there exists an item that satisfies a specific predicate in this collection and return the first one in enumeration order. |