[GHC] #13153: Several Traversable instances have an extra fmap
GHC
ghc-devs at haskell.org
Thu Jan 19 18:58:38 UTC 2017
#13153: Several Traversable instances have an extra fmap
-------------------------------------+-------------------------------------
Reporter: dfeuer | Owner: dfeuer
Type: bug | Status: new
Priority: normal | Milestone: 8.4.1
Component: Core | Version: 8.1
Libraries |
Keywords: | Operating System: Unknown/Multiple
Architecture: | Type of failure: Runtime
Unknown/Multiple | performance bug
Test Case: | Blocked By:
Blocking: | Related Tickets:
Differential Rev(s): | Wiki Page:
-------------------------------------+-------------------------------------
For example, we define
{{{#!hs
instance Traversable ZipList where
traverse f (ZipList xs) = ZipList <$> traverse f xs
}}}
If the list is very short, the extra `fmap` could be bad. We can fix this
by inlining the inner `traverse`. However, I suspect a better approach
would be to add a method to `Traversable`:
{{{#!hs
mapTraverse :: Applicative f
=> (t b -> r) -> (a -> f b) -> t a -> f r
mapTraverse p f xs = p <$> traverse f xs
}}}
but I need to work through whether this is enough power to solve enough
problems.
--
Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/13153>
GHC <http://www.haskell.org/ghc/>
The Glasgow Haskell Compiler
More information about the ghc-tickets
mailing list