names<-.largeList {largeList} | R Documentation |
Overload of operator names<-.
## S3 replacement method for class 'largeList' names(x) <- value
x |
A largeList object created by |
value |
A character vector. |
It behaviours the same as a normal list object.
largelist_object <- getList("example.llo", truncate = TRUE) largelist_object[[]] <- list("A" = 1, "B" = 2, "C" = 3) ## assign list to the list file names(largelist_object) <- c("AA", "BB", "CC")