Hello!
On Sun, Nov 21, 1999 at 09:07:47PM -0500, c_stanto wrote:
> I want to make a hash table using an array as the main part. I want to
> do:
> type Entry a = (String , a)
> type HashTable a = array Int (Entry a)
> meaning that I want a hashTable whose entries are of type Entry
I want to make a hash table using an array as the main part. I want to
do:
type Entry a = (String , a)
type HashTable a = array Int (Entry a)
meaning that I want a hashTable whose entries are of type Entry and the
indices are of type Int. Can anyone point me in the rig