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
IsDoneSignature
this.IsDone
IsNextSignature
this.IsNext
DoneSignature
Done
NextSignature
Next('value, unit -> Execution<StreamStep<'value, 'error>, 'error>)

Summary

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

IsDone

this.IsDone
Member

Returns

bool

IsNext

this.IsNext
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