length-set-.largeList: Overload of function length<-.

Description Usage Arguments See Also Examples

Description

Set the length of list stored in file.

Usage

1
2
## S3 replacement method for class 'largeList'
length(x) <- value

Arguments

x

A largeList object created by getList.

value

An integer number

See Also

largeList

Examples

1
2
3
largelist_object <- getList("example.llo", truncate = TRUE)
largelist_object[[]] <- list("A" = 1, "B" = 2, "C" = 3)  ## assign list to the list file
length(largelist_object) <- 5 ## get list("A" = 1, "B" = 2, "C" = 3, NULL, NULL)

largeList documentation built on May 1, 2019, 10:55 p.m.