An exercise on applicatives

Rereading the great Functional Pearl “Applicative programming with effects” I found the following:

We began this section by observing that Accy o is not a monad. However, given Monoid o it can be defined as the composition of two applicative functors derived from monads—which two, we leave as an exercise

What they call Accy o is what we would call today Const o from Data.Functor.Const

a phantom type that forgets about a and just carries around the o.

Const o can be made an instance of Applicative if o has a Monoid:

Since we are forgetting about the a’s, the only way to combine two Const o is to use the monoid on o.

Const o is a pretty unusual applicative. It’s surprising that it satisfies all the laws by discarding so much. Let’s verify it is actually an Applicative by checking the laws:

First the Functor laws:

And now the Applicative laws:

OK, back to the exercise, how can we write Const as the composition of two Monads? If we achieved this, we would get the Applicative instance, and the proof of the laws for free. That’s because there is an instance

Const’s applicative combines effects using a monoid. The other basic monad we know of with that same behavior is Writer, which also combines its payload using a monoid. So, the Const o applicative looks a lot like the Writer o applicative. We could write:

But this doesn’t really ignore the a type. When using this code, some type and value for a must be selected. Even more, the applicative will actually carry out the work of operating on the a’s. What we want is some type that can ignore a completely. Enter Proxy in the base library

Again a phantom type monad. There is a single inhabitant in this type, Proxy, so the Applicative doesn’t do any computation at all. The functor, applicative and monad laws for Proxy t are satisfied by construction, because every Proxy t is equal to every “other” Proxy t.

Using Proxy we get a better candidate for the Writer result type:

or, rewriting this in terms of Compose1:

With this version of Const', we don’t need to write the instance or prove the applicative laws, and yet, now we can use Const' to traverse combining with the monoid.


  1. 1 As a reminder, functor composition is declared as