FSharpPlus


Enumerator.MapEnumerator<'T> Type

An abstract enumerator, useful when mapping over enumerators. It maintains a mutable `curr` item, and a process MapEnumeratorState `state`. Implement DoMoveNext such that `curr` is set after calling, and return whether the enumerator actually moved next. [omit]

Record fields

Record Field Description

curr

Full Usage: curr

Field type: 'T
Modifiers: mutable
Field type: 'T

Constructors

Constructor Description

MapEnumerator()

Full Usage: MapEnumerator()

Returns: MapEnumerator<'T>
Returns: MapEnumerator<'T>

Instance members

Instance member Description

this.Dispose

Full Usage: this.Dispose

Modifiers: abstract

this.DoMoveNext

Full Usage: this.DoMoveNext

Parameters:
    arg0 : byref<'T>

Returns: bool
Modifiers: abstract
arg0 : byref<'T>
Returns: bool

this.GetCurrent

Full Usage: this.GetCurrent

Returns: 'T
Returns: 'T