names.largeList {largeList} | R Documentation |
Get the names of elements stored in list file.
## S3 method for class 'largeList' names(x)
x |
A largeList object created by |
A character vector.
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) ## get c("A", "B", "C")