append.overwrite.alists: Combine two argument lists

Description Usage Arguments Details Value Author(s) Examples

Description

first list master, second list slave

Usage

1
append.overwrite.alists(masterArgs,slaveArgs)

Arguments

masterArgs

list of arguments, of which will stay unchanged

slaveArgs

list of arguments, conflicts with masterArgs will be deleted. Additional args will be appended.

s

Details

This function combines to lists of arguments. Conflict will be resolved by masterArgs.

Value

list of arguments, being masterArgs appended by slaveArgs

Author(s)

Soren Havelund Welling

Examples

1
2
3
4
5
arglist1 = alist(monkey="happy",telephone.no=53)
arglist2 = alist(monkey="sad",house.no=12)

#this should yield a alist(monkey="happy", telephone.no=53, house.no=12)
forestFloorStable:::append.overwrite.alists(arglist1,arglist2)

forestFloorStable documentation built on May 2, 2019, 5:22 p.m.