You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes, as in a replicate-optimized Seq, m >> n or m *> n will be much better than m >>= \_ -> n; in these cases, GHC will not know that they are the same. We can add GHC rewrite rules to attempt to do the right thing as appropriate.
Sometimes, as in a
replicate
-optimizedSeq
,m >> n
orm *> n
will be much better thanm >>= \_ -> n
; in these cases, GHC will not know that they are the same. We can add GHC rewrite rules to attempt to do the right thing as appropriate.See also #62
The text was updated successfully, but these errors were encountered: