In "Learn You a Haskell for Great Good!" author claims that Applicative IO
instance is implemented like this:
instance Applicative IO where
pure = return
a <*> b = do
f <- a
x <- b
return (f x)
I might be wrong, but it seems that both return
, and do
-specific constructs (some sugared binds (>>=)
) comes from Monad IO
. Assuming that's correct, my actual question is:
Why Applicative IO
implementation depends on Monad IO
functions/combinators?
Isn't Applicative
less powerfull concept than Monad
?
Edit (some clarifications):
This implementation is against my intuition, because according to Typeclassopedia article it's required for a given type to be Applicative
before it can be made Monad
(or it should be in theory).
(...) according to Typeclassopedia article it's required for a given type to be Applicative before it can be made Monad (or it should be in theory).
Yes, your parenthetical aside is exactly the issue here. In theory, any Monad
should also be an Applicative
, but this is not actually required, for historical reasons (i.e., because Monad
has been around longer). This is not the only peculiarity of Monad
, either.
Consider the actual definitions of the relevant type classes, taken from the base
package's source on Hackage.
Here's Applicative
:
class Functor f => Applicative f where
pure :: a -> f a
(<*>) :: f (a -> b) -> f a -> f b
(*>) :: f a -> f b -> f b
(<*) :: f a -> f b -> f a
...about which we can observe the following:
Functor
.Meanwhile, here's Monad
:
class Monad m where
(>>=) :: m a -> (a -> m b) -> m b
(>>) :: m a -> m b -> m b
return :: a -> m a
fail :: String -> m a
...about which we can observe the following:
Applicative
, but also Functor
, both of which are logically implied by Monad
but not explicitly required.return
and join
.fail
which doesn't really fit in at all.In general, the ways that the Monad
type class differs from the mathematical concept it's based on can be traced back through its history as an abstraction for programming. Some, like the function application bias it shares with Applicative
, are a reflection of existing in a functional language; others, like fail
or the lack of an appropriate class context, are historical accidents more than anything else.
What it all comes down to is that having an instance of Monad
implies an instance for Applicative
, which in turn implies an instance for Functor
. A class context merely formalizes this explicitly; it remains true regardless. As it stands, given a Monad
instance, both Functor
and Applicative
can be defined in a completely generic way. Applicative
is "less powerful" than Monad
in exactly the same sense that it is more general: Any Monad
is automatically Applicative
if you copy+paste the generalized instance, but there exist Applicative
instances which cannot be defined as a Monad
.
A class context, like Functor f => Applicative f
says two things: That the latter implies the former, and that a definition must exist to fulfill that implication. In many cases, defining the latter implicitly defines the former anyway, but the compiler cannot deduce that in general, and thus requires both instances to be written out explicitly. The same thing can be observed with Eq
and Ord
--the latter obviously implies the former, but you still need to define an Eq
instance in order to define one for Ord
.
The IO
type is abstract in Haskell, so if you want to implement a general Applicative
for IO
you have to do it with the operations that are supported by IO. Since you can implement Applicative
in terms of the Monad
operations that seems like a good choice. Can you think of another way to implement it?
And yes, Applicative
is in some sense less powerful than Monad
.
Isn't Applicative a less powerful concept than Monad?
Yes, and therefore whenever you have a Monad
you can always make it an Applicative
. You could replace IO
with any other monad in your example and it would be a valid Applicative
instance.
As an analogy, while a color printer may be considered more powerful than a grayscale printer, you can still use one to print a grayscale image.
Of course, one could also base a Monad
instance on an Applicative
and set return = pure
, but you won't be able to define >>=
generally. This is what Monad
being more powerful means.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With