StreamStep<'value, 'error>Union

PackageAxial
A single step of a FlowStream`3: either the stream is exhausted, or it produced one value plus a thunk that continues the stream.

Specification

Kind
Union
Members
4
Examples
0
IsNextSignature
this.IsNext
IsDoneSignature
this.IsDone
DoneSignature
Done
NextSignature
Next('value, unit -> Execution<StreamStep<'value, 'error>, 'error>)

Summary

NameSignatureSynopsis
IsNextthis.IsNextNo description available.
IsDonethis.IsDoneNo description available.
DoneDoneNo description available.
NextNext('value, unit -> Execution, 'error>)No description available.

IsNext

this.IsNext
Member

Returns

bool

IsDone

this.IsDone
Member

Returns

bool

Done

Done
Member

Returns

unit

Next

Next('value, unit -> Execution<StreamStep<'value, 'error>, 'error>)
Member

Parameters

NameTypeDescription
Item1'value
Item2unit -> Execution<StreamStep<'value, 'error>, 'error>

Returns

unit