Skip to contents

Create a Named List

Usage

named_list(nn = character(0L), init = NULL)

Arguments

nn

(character())
Names of new list.

init

(any)
All list elements are initialized to this value.

Value

(named list()).

Examples

named_list(c("a", "b"))
#> $a
#> NULL
#> 
#> $b
#> NULL
#> 
named_list(c("a", "b"), init = 1)
#> $a
#> [1] 1
#> 
#> $b
#> [1] 1
#>