Closed bgamari closed 8 years ago
Previously GHC would be unable to fuse this as it was written in terms of a simple recursion. This merely rewrites toList in terms of build and bumps its INLINEABLE to INLINE to ensure that GHC sees the potential for fusion.
build
Looks great! Thanks :)
Previously GHC would be unable to fuse this as it was written in terms of a simple recursion. This merely rewrites toList in terms of
build
and bumps its INLINEABLE to INLINE to ensure that GHC sees the potential for fusion.