1vector ( x -- vector )
Factor documentation > Factor handbook > The language > Collections > Vectors
Prev:<vector> ( n -- vector )


Vocabulary
vectors

Inputs and outputs
xan object
vectora vector


Word description
Create a new vector with one element.

Definition
USING: sequences ;

IN: vectors

: 1vector ( x -- vector ) V{ } 1sequence ;