# NOT RUN {
# Compared to simply using list(...) to capture dots, dots_list()
# splices explicitly:
x <- list(1, 2)
dots_list(splice(x), 3)
# Unlike dots_splice(), it doesn't splice bare lists:
dots_list(x, 3)
# dots_splice() splices lists marked with splice() as well as bare
# lists:
x <- list(1, 2)
dots_splice(splice(x), 3)
dots_splice(x, 3)
# }
Run the code above in your browser using DataLab