Show / Hide Table of Contents

Struct EnumerableTuple<I, T>.Enumerator

Represents enumerator over items in the tuple.

Implements
IEnumerator<I>
Namespace: DotNext
Assembly: DotNext.dll
Syntax
public struct Enumerator : IEnumerator<I>

Properties

| Improve this Doc View Source

Current

Gets currently iterating item in the tuple.

Declaration
public I Current { get; }
Property Value
Type Description
I

Methods

| Improve this Doc View Source

MoveNext()

Advances position of this enumerator.

Declaration
public bool MoveNext()
Returns
Type Description
Boolean

true if next item exists in the tuple; otherwise, false.

| Improve this Doc View Source

Reset()

Sets the enumerator to its initial position, which is before the first item in the tuple.

Declaration
public void Reset()

Implements

IEnumerator<>

Extension Methods

ExpressionBuilder.Const<T>(T)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX