Description Usage Arguments Details Value Author(s) Examples
View source: R/append.overwrite.alists.R
First argument list is master, second list slave
1 | append.overwrite.alists(masterArgs,slaveArgs)
|
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
This function combines to lists of arguments. Conflicts will be resolved by masterArgs.
List of arguments, being masterArgs appended by slaveArgs
Soren Havelund Welling
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)
forestFloor:::append.overwrite.alists(arglist1,arglist2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.