Interface IDirectedEnumerable<T>
A generic collection, that can be enumerated backwards.
Assembly: DistributedLucene.Net.dll
Syntax
public interface IDirectedEnumerable<T> : Collections.Generic.IEnumerable<T>
Type Parameters
Properties
Name |
Description |
Direction
|
Forwards if same, else Backwards
|
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
foreach (T x in coll.Backwards()) {...}
|
Extension Methods