Instantiates a new '>hashmap object,
i.e. an unordered collection of key-value pairs with mapping
$$f: keys -> values$$, where only unique key-value pairs
can be stored.
# NOT RUN {# creates a hashmap<character, SEXP> h <- hashmap()
# creates a hashmap<integer, SEXP> h <- hashmap("integer")
# creates a hashmap<numeric, SEXP> h <- hashmap("numeric")
# }