attachList: Attaching one list at the end of another

Description Usage Arguments Details Value Author(s) Examples

View source: R/utils.R

Description

This function attaches one list at the end of another list.

Usage

1
attachList(params_1, params_2)

Arguments

params_1

A List

params_2

A second list which will be attached at the end of the first list.

Details

This is a convenience funktion, but the implementation is not optimized for speed.

Value

A List composed of the two input lists.

Author(s)

Gunnar Libiseller

Examples

1
2
3
	a <- list("a"=1, "b"=2)
	b <- list("c"=4, "d"=4)
	attachList(a, b)

IPO documentation built on Nov. 8, 2020, 8:31 p.m.