[This is preliminary documentation and is subject to change.]

Provides interface for collections that has bidirectional enumerator

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public interface IBiDirEnumerable<T> : IEnumerable<T>
Visual Basic
Public Interface IBiDirEnumerable(Of T) _
	Inherits IEnumerable(Of T)
Visual C++
generic<typename T>
public interface class IBiDirEnumerable : IEnumerable<T>
F#
type IBiDirEnumerable<'T> =  
    interface
        interface IEnumerable<'T>
    end
JScript
JScript does not support generic types or methods.

Type Parameters

T
Type of element in collection

See Also