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 right direction?
- Re: using an array with a type constructor c_stanto
- Re: using an array with a type constructor Hannah Schroeter
