TITLE(append @@ Vector Merging)
USAGE(
append(x, values, after=length(x))
)
ALIAS(append)
ARGUMENTS(
ARG(x @@ the vector to be modified.)
ARG(values @@ to be included in the modified vector.)
ARG(after @@ a subscript, after which the values are to be appended.)
)
VALUE(
A vector containing the values in LANG(x) with the elements
of LANG(values) appended after the specified element of LANG(x).
)
EXAMPLES(
all(append(1:5, 0:1, after=3) ==
    append(1:3, c(0:1, 4:5)))
)
