KeyValue {DSL} | R Documentation |
Key/Value Pairs
Description
Key/value pairs in "DList"
objects.
Usage
DKeys( x )
Arguments
x |
a |
Value
A character vector representing all keys of the key/value pairs stored
in chunks by "DList"
objects.
Examples
## 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()
[Package DSL version 0.1-7 Index]