An iterator which stores the next two tokens.

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

Syntax

C#
public class Lookahead2Enumerator<T>
where T : class
Visual Basic (Declaration)
Public Class Lookahead2Enumerator(Of T As Class)
Visual C++
generic<typename T>
where T : ref class
public ref class Lookahead2Enumerator

Type Parameters

T
The type of the items contained in the enumerator

Remarks

Added 'where T : class' to deal with null references throughout. See http://msdn.microsoft.com/en-ca/library/z219yksy.aspx

Inheritance Hierarchy

System..::.Object
  SingularSys.Jep.ConfigurableParser..::.Lookahead2Enumerator<(Of <(T>)>)

See Also