append-outputs ( quot -- seq )
Factor handbook » The language » Combinators » Smart combinators

Prev:sum-outputs ( quot -- n )
Next:append-outputs-as ( quot exemplar -- seq )


Vocabulary
combinators.smart

Inputs
quota quotation


Outputs
seqa sequence


Word description
Infers the number of outputs from quot and returns a sequence of the outputs appended.

Examples
USING: combinators.smart prettyprint ; [ { 1 2 } { "A" "b" } ] append-outputs .
{ 1 2 "A" "b" }


See also
append-outputs-as

Definition