문제

I've written a Haskell function like so:

shift :: Subst a -> Subst a
shift (S s) = [(x, (subst s' d)) | (x,d) <- s] where 
      s' = [(x,d) | (x,d) <- s, null (vars d)]

With a data type like so data Subst a = S [(String,a)]

I've declared subst as subst :: Subst a -> a -> a and vars asvars :: a -> [String]. When I run this, I get a type error. Any ideas why?

도움이 되었습니까?

해결책

Your shift function is declared to return a Subst, but it really returns a list. You probably meant to wrap the Subst constructor around the list.

Then your subst function is declared to take a Subst argument, but you're calling it with a list - same issue basically.

Also your vars function probably contains a type error as well because, as I indicated in my answer to your previous question, you can't define a meaningful function of type a -> [String].

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top