I want to use a dictionary/map data structure in R, similar to Python\'s dict or C++ STL\'s std::map or std::hash_map.
dict
std::map
std::hash_map
I can d
The fastest will be an environment, since they're hashed by default.
e <- new.env() e$my_key <- 10 ls(e)