Find the given value in a hash table
Find the given value in a hash table or list.
hash.find(x,key)
x |
A hash table or list. |
key |
The key for searching the table. |
This function search the given key.
If the given key exists return its value else returns 0.
Manos Papadakis
R implementation and documentation: Manos Papadakis <papadakm95@gmail.com>
x <- hash.list(letters,c(1:26)) value <- hash.find(x,"a") x[["a"]]==value
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.