In shool, I was task to write a function which appends Numbers to the left side of a list, if they are even. The type-signature was given as:
appendIfEven :: (Applicative f, Monoid (f a), Integral a) => a -> f a -> f a
My answer was the following piece of code
appendIfEven :: (Applicative f, Monoid (f a), Integral a) => a -> f a -> f a
appendIfEven x ms = if x `mod` 2 == 0 then mempty x `mappend` ms else ms
Haskell can compile my code, but it does not work properly. After some experimenting, I switched mempty to pure :
appendIfEven :: (Applicative f, Monoid (f a), Integral a) => a -> f a -> f a
appendIfEven x ms = if x `mod` 2 == 0 then pure x `mappend` ms else ms
Which works fin. But why ? shouldn't pure == mempty ? (In this context) It seems to be not important for my Tutor. However I would really like to understand a bit more about Haskell and where I am wrong ....
Consider applying this to lists.
Those don't look very similar to me. In particular,
mempty x
ought to be ill-typed.Basically
mempty
gives you an empty thing, whereaspure x
gives you a thing with anx
in it.