list.append: LIST APPEND

Description Usage Arguments Value Examples

Description

list.append gives the opportunity to append elements to a list and name it.

Usage

1

Arguments

x

element that should be append to list lst

name

optinal a name for list element

lst

list that should extended by the element x

Value

by x extended list

Examples

1
2
3
4
( lst <- list( x = 9 ) )
( lst <- list.append( lst, x = Sys.time( ), name = "TIME" ) )
( lst <- list.append( lst, "y", "Ypsilon" ) )
( lst <- list.append( lst, "unnamed" ) )

TPeschel/hlpr4life documentation built on May 9, 2019, 2:25 p.m.