keyvalue: Key/Value Pairs

Description Usage Arguments Value Examples

Description

Key/value pairs in "DList" objects.

Usage

1
DKeys( x )

Arguments

x

a "DList" object.

Value

A character vector representing all keys of the key/value pairs stored in chunks by "DList" objects.

Examples

1
2
3
4
5
6
7
8
## create a 2 elements DList
dl <- DList( line1 = "This is the first line.",
             line2 = "Now, the second line." )
## retrieve keys
DKeys( dl )
## remove DList and garbage collect it
rm( dl )
gc()

Example output

[1] "line1" "line2"
         used (Mb) gc trigger (Mb) max used (Mb)
Ncells 259667 13.9     460000 24.6   350000 18.7
Vcells 458470  3.5    1023718  7.9   786431  6.0

DSL documentation built on Nov. 23, 2019, 3 a.m.

Related to keyvalue in DSL...