vmerge ( u v -- w )
Factor handbook » The language » Numbers » Vector operations » Vector shuffling, packing, and unpacking

Prev:hrshift ( v n -- w )
Next:(vmerge) ( u v -- h t )


Vocabulary
math.vectors

Inputs
ua sequence
va sequence


Outputs
wa sequence


Word description
Creates a new sequence of the same type as and twice the length of u and v by interleaving the elements of u and v.

Examples
USING: kernel math.vectors prettyprint ; { "A" "B" "C" "D" } { "1" "2" "3" "4" } vmerge .
{ "A" "1" "B" "2" "C" "3" "D" "4" }


See also
(vmerge), (vmerge-head), (vmerge-tail)

Definition


Methods