appendToPrg: appendToPrg

Description Usage Arguments Value Examples

Description

Checks for each named element of list left if exists in the list right and appends the elements of left.

Usage

1
appendToPrg(left, right)

Arguments

left

list

right

list

Value

the merged list

Examples

1
2
3
4
l <- list(a=1, b=2)
r <- list(a=1, c=3)
# Note the r$c is NOT overtaken into the result
appendToPrg(l, r)

sigbertklinke/shinyExample documentation built on May 26, 2019, 4:32 a.m.