Simple interface for an extended enumerator type. It provides additional methods to the standard C# enumerator that exist in java enumerators.

Namespace:  SingularSys.Jep.DataStructures
Assembly:  Jep (in Jep.dll) Version: 1.1.0.0 (1.0.0)

Syntax

C#
public interface IExtendedEnumerator<T> : IEnumerator<T>, 
	IDisposable, IEnumerator
Visual Basic (Declaration)
Public Interface IExtendedEnumerator(Of T) _
	Implements IEnumerator(Of T), IDisposable, IEnumerator
Visual C++
generic<typename T>
public interface class IExtendedEnumerator : IEnumerator<T>, 
	IDisposable, IEnumerator

Type Parameters

T

See Also