list.append: Append elements to a list

View source: R/list.insert.R

list.appendR Documentation

Append elements to a list

Description

Append elements to a list

Usage

list.append(.data, ...)

Arguments

.data

A list or vector

...

A vector or list to append after x

See Also

list.prepend, list.insert

Examples

## Not run: 
x <- list(a=1,b=2,c=3)
list.append(x,d=4,e=5)
list.append(x,d=4,f=c(2,3))

## End(Not run)

renkun-ken/rlist documentation built on March 16, 2023, 8:25 p.m.