Brent Yorgey's Typeclassopedia gives the following exercise:
Give an example of a type of kind
* -> *
which cannot be made an instance ofFunctor
(without usingundefined
).
Please tell me what "cannot be made an instance of Functor
" means.
Also, I'd appreciate an example, but perhaps as a spoiler so that you can, please, guide me to the answer.
Let's talk about variances.
Here's the basic notion. Consider the type
A -> B
. What I want you to imagine is that such a type is similar to "having aB
" and also "owing anA
". In fact, if you pay back yourA
you immediately receive yourB
. Functions are kind of like escrow in that way.The notion of "having" and "owing" can extend to other types. For instance, the simplest container
behaves like this: if you "have" a
Box a
then you also "have" ana
. We consider types which have kind* -> *
and "have" their argument to be (covariant) functors and we can instantiate them toFunctor
What happens if we consider the type of predicates over a type, like
in this case, if we "have" a
Pred a
, we actually "owe" ana
. This arises from thea
being on the left side of the(->)
arrow. Wherefmap
ofFunctor
is defined by passing the function into the container and applying it to all the places where we "have" our inner type, we can't do the same forPred a
since we don't "have" anda
s.Instead, we'll do this
Now that
contramap
is like a "flipped"fmap
? It will allow us to apply the function to the places where we "own" ab
inPred b
in order to receive aPred a
. We might callcontramap
"barter" because it encodes the idea that if you know how to getb
s froma
s then you can turn a debt ofb
s into a debt ofa
s.Let's see how it works
we just run our trade using
f
prior to passing it on into the predicate function. Wonderful!So now we have covariant and contravariant types. Technically, these are known as covariant and contravariant "functors". I'll also state immediately that almost always a contravariant functor is not also covariant. This, thus, answers your question: there exist a bunch of contravariant functors which are not able to be instantiated to
Functor
.Pred
is one of them.There are tricky types which are both contravariant and covariant functors, though. In particular, the constant functors:
In fact, you can essentially prove that anything which is both
Contravariant
andFunctor
has a phantom parameter.On the other hand, what happens with a type like
In
Endo a
we both owe and receive ana
. Does that mean we're debt free? Well, no, it just means thatEndo
wants to be both covariant and contravariant and does not have a phantom parameter. The result:Endo
is invariant and can instantiate neitherFunctor
norContravariant
.