Skip to content

R package implementing a Dictionary data structure.

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.md
Notifications You must be signed in to change notification settings

mrparker909/rdict

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rdict

R package implementing a Dictionary data structure.

Install Instructions

devtools::install_github("mrparker909/rdict")

Example Use

# create a dictionary called myDict
myDict = Dictionary()

# add the key/value pair (key1, 1) to myDict
myDict = Add(myDict, "key1", 1)

# check that key1 exists in myDict
ContainsKey(myDict, "key1")

# get the value stored at key1
GetValue(myDict, "key1")

# remove key1 from myDict
myDict = RemoveKey(myDict, "key1")

About

R package implementing a Dictionary data structure.

Resources

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages