View source: R/deprec-splice.R
splice | R Documentation |
This function was deprecated in purrr 1.0.0 because we no longer believe that
this style of implicit/automatic splicing is a good idea; instead use
rlang::list2()
+ !!!
or list_flatten()
.
splice()
splices all arguments into a list. Non-list objects and lists
with a S3 class are encapsulated in a list before concatenation.
splice(...)
... |
Objects to concatenate. |
A list.
inputs <- list(arg1 = "a", arg2 = "b")
# splice() concatenates the elements of inputs with arg3
splice(inputs, arg3 = c("c1", "c2")) |> str()
list(inputs, arg3 = c("c1", "c2")) |> str()
c(inputs, arg3 = c("c1", "c2")) |> str()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.