Update comment on fmapDefault to note that it only works for Traversable instances...
authorBrent Yorgey <byorgey@LVN513-12.cis.upenn.edu>
Fri, 15 Apr 2011 19:22:54 +0000 (15:22 -0400)
committerIan Lynagh <igloo@earth.li>
Fri, 22 Apr 2011 13:46:47 +0000 (14:46 +0100)
Data/Traversable.hs

index 2bdc1bc..062d1a0 100644 (file)
@@ -170,7 +170,10 @@ instance Applicative (StateR s) where
 mapAccumR :: Traversable t => (a -> b -> (a, c)) -> a -> t b -> (a, t c)
 mapAccumR f s t = runStateR (traverse (StateR . flip f) t) s
 
--- | This function may be used as a value for `fmap` in a `Functor` instance.
+-- | This function may be used as a value for `fmap` in a `Functor`
+--   instance, provided that 'traverse' is defined. (Using
+--   `fmapDefault` with a `Traversable` instance defined only by
+--   'sequenceA' will result in infinite recursion.)
 fmapDefault :: Traversable t => (a -> b) -> t a -> t b
 {-# INLINE fmapDefault #-}
 fmapDefault f = getId . traverse (Id . f)