attachList: Attaching one list at the end of another

View source: R/utils.R

attachListR Documentation

Attaching one list at the end of another

Description

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

Usage

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

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

rietho/IPO documentation built on Dec. 6, 2022, 8:17 a.m.