Append list with named index
Examples
ls_d <- list(test=c(1:20))
ls_d <- list()
data.frame(letters[1:20],1:20) |> append_list(ls_d,"letters")
#> Error in append_list(data.frame(letters[1:20], 1:20), ls_d, "letters"): could not find function "append_list"
letters[1:20]|> append_list(ls_d,"letters")
#> Error in append_list(letters[1:20], ls_d, "letters"): could not find function "append_list"