just read some wiki that said it's possible, but didn't give an example. when I try to do it, I get this...
Code:
ix_hash_test.cpp: In function ‘int main(int, char**)’:
ix_hash_test.cpp:21: error: invalid types ‘ixHash<int>*[const char [3]]’ for array subscript
edit: gah, I'm an idiot, it works. I had mytable["PI"], but mylist is a pointer, so it needed to be (*mytable)["PI"] to work