Learn R Programming

DSL (version 0.1-4)

KeyValue: Key/Value Pairs

Description

Key/value pairs in "DList" objects.

Usage

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

Run this code
## 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()

Run the code above in your browser using DataLab