<html><head><meta http-equiv="Content-Type" content="text/html charset=windows-1252"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">Hi David,<div><br></div><div>Thanks for your reply!</div><div><br></div><div>That’s really interesting; I never would have thought to try and implement super-class member functions, in terms of sub-class member functions.</div><div>I was trying to go the other way: implement sequenceA, in terms of foldMap, which seemed to require a completely generic way of turning an Applicative (guaranteed by the type signature of sequenceA) into a Monoid (required by foldMap). I came up with this:</div><div><br></div><div><div><br></div><div>{-# LANGUAGE Rank2Types</div><div>             FlexibleContexts</div><div>             UndecidableInstances</div><div>             AllowAmbiguousTypes</div><div> #-}</div><div><br></div><div>newtype MonApp = MonApp {getApp :: (Applicative f, Monoid a) => f a}</div><div><br></div><div>instance Monoid MonApp where</div><div>  mempty          = MonApp $ pure mempty</div><div>  mappend ma1 ma2 = MonApp $ mappend <$> (getApp ma1) <*> (getApp ma2)</div><div><br></div><div>instance (Monoid a) => Monoid (Tree a) where</div><div>  mempty = Empty</div><div>  mappend Empty t = t</div><div>  mappend t Empty = t</div><div>  mappend (Leaf x) (Leaf y) = Leaf (x `mappend` y)</div><div>  mappend (Leaf x) (Node t1 y t2) = Node t1 (x `mappend` y) t2</div><div>  mappend (Node t1 y t2) (Leaf x) = Node t1 (y `mappend` x) t2</div><div>  mappend (Node t1 x t2) (Node t3 y t4) = Node (t1 `mappend` t3) (x `mappend` y) (t2 `mappend` t4)</div><div><br></div><div>instance Monoid (Tree a) => Traversable Tree where</div><div>  sequenceA = getApp . foldMap (MonApp . (fmap Leaf))</div><div><br></div><div><br></div><div>to which the compiler responded:</div><div><br></div><div><br></div><div><span style="white-space: pre; background-color: rgb(255, 255, 255);">Couldn't match type ‘f (Tree a1)’ with ‘forall (f1 :: * -> *) a2. (Applicative f1, Monoid a2) => f1 a2’</span><span style="box-sizing: border-box; white-space: pre;"><br style="box-sizing: border-box; white-space: pre;"></span><span style="white-space: pre; background-color: rgb(255, 255, 255);">Expected type: f (Tree a1) -> interactive:IHaskell161.MonApp</span><span style="box-sizing: border-box; white-space: pre;"><br style="box-sizing: border-box; white-space: pre;"></span><span style="white-space: pre; background-color: rgb(255, 255, 255);">  Actual type: (forall (f :: * -> *) a. (Applicative f, Monoid a) => f a) -> interactive:IHaskell161.MonApp</span><span style="box-sizing: border-box; white-space: pre;"><br style="box-sizing: border-box; white-space: pre;"></span><span style="white-space: pre; background-color: rgb(255, 255, 255);">Relevant bindings include sequenceA :: Tree (f a1) -> f (Tree a1) (bound at </span><interactive style="box-sizing: border-box; white-space: pre;">:14:3)<br style="box-sizing: border-box;">In the first argument of ‘(.)’, namely ‘IHaskell161.MonApp’<br style="box-sizing: border-box;">In the first argument of ‘foldMap’, namely ‘(interactive:IHaskell161.MonApp . (fmap Leaf))’</interactive></div><div><interactive style="box-sizing: border-box; white-space: pre;"><br></interactive></div><div><interactive style="box-sizing: border-box; white-space: pre;"><br></interactive></div><div><interactive style="box-sizing: border-box; white-space: pre;">-db</interactive></div><div><interactive style="box-sizing: border-box; color: rgb(255, 0, 0); font-family: monospace; font-size: 14px; font-style: italic; white-space: pre;"><br></interactive></div><div><span style="color: rgb(255, 0, 0); font-family: monospace; font-size: 14px; font-style: italic; white-space: pre; background-color: rgb(255, 255, 255);"><br></span></div><div><div>On Feb 5, 2016, at 11:20 AM, David Feuer <<a href="mailto:david.feuer@gmail.com">david.feuer@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><p dir="ltr">It's not so much that it's *necessary* as that it's *possible*. The existence of two functions in Data.Traversable explains both of the superclasses of Traversable:</p><p dir="ltr">fmapDefault :: Traversable t => (a -> b) -> t a -> t b</p><p dir="ltr">foldMapDefault :: (Traversable t, Monoid m) => (a -> m) -> t a -> m</p><p dir="ltr">Each of these is written using only traverse, and they can be used to define fmap and foldMap for types when you've written traverse.</p><p dir="ltr">Hint: Consider traversing using the following applicative functors:</p><p dir="ltr">newtype Const a b = Const a<br>
instance Monoid a => Applicative (Const a)</p><p dir="ltr">newtype Identity a = Identity a<br>
instance Applicative Identity</p>
<div class="gmail_quote">On Feb 5, 2016 1:45 PM, "David Banas" <<a href="mailto:capn.freako@gmail.com">capn.freako@gmail.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi all,<div><br></div><div>I don't understand why Foldable is a necessary super-class of Traversable, and I suspect that the Applicative/Monoid duality, which I've just begun discovering in the literature, has something to do with why that is so.</div><div><br></div><div>Can anyone give me a hint, without giving me the answer?</div><div><br></div><div>Thanks!</div><div>-db</div><div><br></div></div>
<br>_______________________________________________<br>
Haskell-Cafe mailing list<br>
<a href="mailto:Haskell-Cafe@haskell.org">Haskell-Cafe@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe</a><br>
<br></blockquote></div>
</blockquote></div><br></div></body></html>