Natural way to represent hash tables/dictionaries/maps in R Natural way to represent hash tables/dictionaries/maps in R r r

Natural way to represent hash tables/dictionaries/maps in R


The fastest will be an environment, since they're hashed by default.

e <- new.env()e$my_key <- 10ls(e)