let say i have a two integer hash keys and I want to combine them into a product hash key that is unique to the two hashes and sensitive to the order.
For example:
hashKey(3,2) != hashKey(2,3)
There must be a good mathematical way to achieve this. My math is pretty rusty. any help in reading material or suggestions is appreciated.