We know that any generic type F[_]
withmap
method, which complies to some laws, is a functor. For instance, List[_]
, Option
One of the biggest benefits of concepts like functions is that there are generic constructions that allow you to build more complex types out of simpler functors, and guarantee that these complex types have certain properties. Functors understandably seem rather pointless when you consider them in isolation as you have done, but they become more and more useful the more such constructions you learn and master.
One of the simpler examples is that several ways of combining functors also yield a functor; e.g., if List[A]
and Option[A]
are functors, so are:
List[Option[A]]
and Option[List[A]]
(List[A], Option[A])
Either[List[A], Option[A]]
I don't know enough to write this out in Scala, but in Haskell facts like these translate into generic code like these examples:
-- A generic type to represent the composition of any two functors
-- `f` and `g`.
newtype Compose f g a = Compose { getCompose :: f (g a) }
-- If `f` and `g` are functors, so is `Compose f g`.
instance (Functor f, Functor g) => Functor (Compose f g) where
fmap f (Compose fga) = Compose (fmap (fmap f) fga)
This is a very simple example, but:
map()
operation.Functor
;Functor
implementation to any a type, we gain the ability to use that type in that construction.A more elaborate example is free monads (link has an extended Scala example), a generic interpreter construction that relies on user-supplied Functor
s to define the "instructions" for the language. Other links (and these are mostly straight from a Google search):
Well, once you know something is a Functor, you don't just get map
, you get all of the functions you can derive with it too
For example, it's possible to derive the function lift
in a way that works for any functor.
Lift will "lift" a function from A => B
to F[A] => F[B]
for some Functor F[_]
and is defined as
def lift[A, B](f: A => B): F[A] => F[B] = map(_)(f)
If you are using a library like cats or scalaz then you get these functions for free. The cats documentation has a few other examples you might be interested in
I don't know Scala, but in Haskell, the Functor
class is essential to defining Van Laarhoven-style lenses:
type Lens' s a = forall f . Functor f => (a -> f a) -> s -> f s
These lenses are typically defined for specifically-related types s
and a
, but it's essential to their utility that they work with an arbitrary functor.
Functor
is also important in its role as a superclass of Applicative
and of Traversable
. When working with these more powerful abstractions, it's often very useful to reach for the fmap
method.