Closed
Description
Hi Christopher,
I have stumbled across a small issue with the hash package:
h <- hash(c("a","b","c"), list("bar", 1L, TRUE))
print(h$a); print(h$b); print(h$c)
res <- values(h)
print(class(res)); print(res)
As you see, the list of values is stored properly in the hash, but instead of returning a list, values() returns a vector.
Cheers,
Florent
PS/ This is for hash version 2.2.6 (the latest on CRAN)