Re: using an array with a type constructor

1999-11-22 Thread Hannah Schroeter
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

using an array with a type constructor

1999-11-21 Thread c_stanto
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