sub-.largeList: Overload of operator [].

Description Usage Arguments Details Value See Also Examples

Description

Overload of operator [].

Usage

1
2
## S3 method for class 'largeList'
x[index = NULL]

Arguments

x

A largeList object created by getList.

index

A numeric, logical or character vector.

Details

It behaviours the same as a normal list object.

Value

A list

See Also

largeList

Examples

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

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