While explaining to someone what a type class X is I struggle to find good examples of data structures which are exactly X.

So, I request examples for:

  • A type constructor which is not a Functor.
  • A type constructor which is a Functor, but not Applicative.
  • A type constructor which is an Applicative, but is not a Monad.
  • A type constructor which is a Monad.

I think there are plenty examples of Monad everywhere, but a good example of Monad with some relation to previous examples could complete the picture.

I look for examples which would be similar to each other, differing only in aspects important for belonging to the particular type class.

If one could manage to sneak up an example of Arrow somewhere in this hierarchy (is it between Applicative and Monad?), that would be great too!

link|improve this question

69% accept rate
Is it possible to make a type constructor (* -> *) for which there exists no suitable fmap? – Owen Aug 28 '11 at 10:51
Owen, I think a -> String is not a functor. – Rotsor Aug 28 '11 at 10:53
feedback

3 Answers

up vote 25 down vote accepted

A type constructor which is not a Functor:

newtype T a = T (a -> Int)

You can make a cofunctor out of it, but not a functor. Try writing fmap and you'll fail. Note that the cofunctor version is reversed:

fmap   :: Functor f   => (a -> b) -> f a -> f b
cofmap :: Cofunctor f => (a -> b) -> f b -> f a

A type constructor which is a functor, but not Applicative:

I don't have a good example. There is Const, but ideally I'd like a concrete non-Monoid and I can't think of any. All types are basically numeric, enumerations, products, sums, or functions when you get down to it. You can see below pigworker and I disagreeing about whether Data.Void is a Monoid;

instance Monoid Data.Void where
    mempty = undefined
    mappend _ _ = undefined
    mconcat _ = undefined

Since _|_ is a legal value in Haskell, and in fact the only legal value of Data.Void, this meets the Monoid rules. I am unsure what unsafeCoerce has to do with it, because your program is no longer guaranteed not to violate Haskell semantics as soon as you use any unsafe function.

See the Haskell Wiki for an article on bottom (link) or unsafe functions (link).

I wonder if it is possible to create such a type constructor using a richer type system, such as Agda or Haskell with various extensions.

A type constructor which is an Applicative, but not a Monad:

newtype T a = T {multidimensional array of a}

You can make an Applicative out of it, with something like:

mkarray [(+10), (+100), id] <*> mkarray [1, 2]
  == mkarray [[11, 101, 1], [12, 102, 2]]

But if you make it a monad, you could get a dimension mismatch. I suspect that examples like this are rare in practice.

A type constructor which is a Monad:

[]

About Arrows:

Asking where an Arrow lies on this hierarchy is like asking what kind of shape "red" is. Note the kind mismatch:

Functor :: * -> *
Applicative :: * -> *
Monad :: * -> *

but,

Arrow :: * -> * -> *
link|improve this answer
Good list! I would suggest using something simpler like Either a as an example for the last case, as it is easier to understand. – FUZxxl Aug 28 '11 at 11:16
Thank you! However, I thought more like <*> is the 'main' function for Applicative. An example of a functor without <*> would be nice too! Or does <*> without pure not make sense? – Rotsor Aug 28 '11 at 11:20
@Rotsor: Hm, my wording is off. The problem is that you can implement both, but the applicative functor identities will break. I'll fix the wording. – Dietrich Epp Aug 28 '11 at 11:22
@Dietrich, OK, I see how pure is broken (it has nowhere to take a value for Int from), but <*> could work by doing intersection of the map domains. Doesn't this bring Map Int half-way from Functor to Applicative in some(which?) sense? – Rotsor Aug 28 '11 at 11:33
Wasn't there a recent post on planet.haskell.org that proved, that arrows are nothing more than applicative functors? – FUZxxl Aug 28 '11 at 11:36
show 12 more comments
feedback

My style may be cramped by my phone, but here goes.

newtype Not x = Kill {kill :: x -> Void}

cannot be a Functor. If it were, we'd have

kill (fmap (const ()) (Kill id)) :: Void

and the Moon would be made of green cheese.

Meanwhile

newtype Dead x = Oops {oops :: Void}

is a functor

instance Functor Dead where
  fmap f (Oops corpse) = Oops corpse

but cannot be applicative, or we'd have

oops (pure ()) :: Void

and Green would be made of Moon cheese (which can actually happen, but only later in the evening).

(Extra note: Void, as in Data.Void is an empty datatype. If you try to use undefined to prove it's a Monoid, I'll use unsafeCoerce to prove that it isn't.)

Joyously,

newtype Boo x = Boo {boo :: Bool}

is applicative in many ways, e.g., as Dijkstra would have it,

instance Applicative Boo where
  pure _ = Boo True
  Boo b1 <*> Boo b2 = Boo (b1 == b2)

but it cannot be a Monad. To see why not, observe that return must be constantly Boo True or Boo False, and hence that

join . return == id

cannot possibly hold.

Oh yeah, I nearly forgot

newtype Thud x = The {only :: ()}

is a Monad. Roll your own.

Plane to catch...

link|improve this answer
I was under the impression that Dead x could be applicative as long as Void is a Monoid, which is certainly the case if it is a singleton... what is Void, exactly? – Dietrich Epp Aug 28 '11 at 12:17
Void is empty! Morally, anyhow. – pigworker Aug 28 '11 at 12:31
1  
Void is a type with 0 constructors, I assume. It's not a monoid because there is no mempty. – Rotsor Aug 28 '11 at 12:36
1  
undefined? How rude! Sadly, unsafeCoerce (unsafeCoerce () <*> undefined) is not (), so in real life, there are observations which violate the laws. – pigworker Aug 28 '11 at 12:52
1  
@pigworker: unsafeCoerce has the word "unsafe" in it, which indicates that it CAN be used to violate Haskell's semantics. On the other hand, undefined is a well-defined part of Haskell's semantics. – Dietrich Epp Aug 28 '11 at 13:04
show 13 more comments
feedback

A good example for a type constructor which is not a functor is Set: You can't implement fmap :: (a -> b) -> f a -> f b, because without an additional constraint Ord b you can't construct f b.

link|improve this answer
2  
It is actually a good example since mathematically we would really like to make this a functor. – Alexandre C. Oct 25 '11 at 7:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.