Function: NEXT() 
NEXT<
R>(value):object
Defined in: abstractions/operator.ts:17
Factory function to create a normal stream result.
Type Parameters 
R 
R = any
The type of the emitted value.
Parameters 
value 
R
The value to emit downstream.
Returns 
object
A IteratorResult<R> object with { done: false, value }.
done 
readonlydone:false
value 
readonlyvalue:R