append-set: Append to a vector.

Description Usage Arguments Examples

Description

Appends the 2nd argument to the 1st.

Usage

1
append(x) <- value

Arguments

x

A vector.

value

The element to append.

Examples

1
2
3
4
5
x <- 1:5
append(x) <- 6
print(x)

[1] 1 2 3 4 5 6

traversc/trqwe documentation built on Dec. 4, 2020, 4:21 a.m.