KeyValue {DSL} | R Documentation |
Key/value pairs in "DList"
objects.
DKeys( x )
x |
a |
A character vector representing all keys of the key/value pairs stored
in chunks by "DList"
objects.
## 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()