R/helpers.R
argsstring2list.Rd
Idea from the answer: https://stackoverflow.com/a/62979238
argsstring2list(string)
string to convert to list to use with do.call
list
argsstring2list("A=1:5,b=2:4") #> $A #> [1] 1 2 3 4 5 #> #> $b #> [1] 2 3 4 #>