I am writing a simple hash tree structure in the following program hash_lookup.hs:
module Main where
data (Eq a) => HashTable a b = HashChildren (a, [HashTable a b]) | Hash (a, b) deriving (Show)
getKey :: HashTable a b -> a
getKey (HashChildren (k, hs)) = k
getKey (Hash (k, h)) = k
lookUp :: [a] -> HashTable a b -> Maybe (HashTable a b)
lookUp [] table = return table
lookUp _ (Hash _) = Nothing
lookUp (p:path) (HashChildren (_, ts) ) = lookUp path ( head ( dropWhile (\x -> (getKey x) /= p) ts ) )
getKey is intended to retrieve the root key of a given HashTable, and lookUp takes a list of strings and is meant to follow the first path it finds until it either reaches the full path or fails (I'm aware that this isn't natural behaviour for a tree but it's what my tutorial wants).
I have two questions:
1) Why do I get an error message telling me that a /= a (from the final line) is not allowed as there is No instance for (Eq a) (the error message in terminal), despite (Eq a) in the data declaration?
2) Other than the error I'm getting and the seemingly strange behaviour of the lookup function, is this good or idiomatic Haskell?
Thanks