getListLength {largeList} | R Documentation |
Get number of elements in a list file.
getListLength(file)
file |
Name of file. |
An integer.
list_1 <- list("A" = c(1,2), "B" = "abc", list(1, 2, 3)) saveList(object = list_1, file = "example.llo") getListLength(file = "example.llo")