IteratorAbortResultinterface
{
done: typeof ABORT;
value: R;
}| Property | Type | |
|---|---|---|
.done | typeof ABORT | Always the ABORT symbol, marking this result as an external abort rather than the iterator finishing. required |
.value | R | The value the abort signal resolved with. required |
Result of an iterator that was aborted via an external signal rather than concluding itself.
doneis theABORTsymbol, distinguishing it from an iterator's owndone: trueresult.