mlr3misc (version 0.1.6)

named_list: Create a Named List

Description

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

Run this code
# NOT RUN {
named_list(c("a", "b"))
named_list(c("a", "b"), init = 1)
# }

Run the code above in your browser using DataCamp Workspace