Change to format of a list of function names to match that returned from [`function_info()`]

list_to_function_list(list)

Examples

list_to_function_list( list = list("sum", "mean") )
#> [[1]] #> [[1]]$name #> [1] "sum" #> #> #> [[2]] #> [[2]]$name #> [1] "mean" #> #>