Merge two lists

Description

Adds elements from a list to another list, optionally overwriting them if already present.

Usage

mergeList(x, y, overwrite = FALSE)

Arguments

x
list to which elements from y are added.
y
list whose elements are added to x
overwrite
a logical indicating whether the elements of y already present in x should overwrite the latter or not (default).