Skip to contents

Converts vectors to a list of keyword pairs.

Usage

make_options(...)

Arguments

...

A vector of strings.

Examples

make_options(1:5)
#> $`1`
#> [1] 1
#> 
#> $`2`
#> [1] 2
#> 
#> $`3`
#> [1] 3
#> 
#> $`4`
#> [1] 4
#> 
#> $`5`
#> [1] 5
#>