a quotation with stack effect ( ... prev elt -- ... next )
Outputs
final
the final result
newseq
a new sequence
Word description Combines successive elements of the sequence using a binary operation, and outputs a sequence of intermediate results, together with the final result.
The first element of the output sequence is identity. Then, on the first iteration, the two inputs to the quotation are identity and the first element of the input sequence. On successive iterations, the first input is the result of the previous iteration, and the second input is the next element of the input sequence.
When given the empty sequence, outputs a new empty sequence together with the identity.