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
I was looking at creating a PR for #446 and noticed that for strict text hPutStr the base function GHC.IO.Handle.Text.hPutChar which has a lot of overhead and repeats much work for every character that Data.Text.IO.hPutStr has already done. Is this something that could be improved upon?
This also seems to be the case with lazy text hPutStr except that it repeats work for every chunk instead of every char.
The text was updated successfully, but these errors were encountered:
I was looking at creating a PR for #446 and noticed that for strict text hPutStr the base function GHC.IO.Handle.Text.hPutChar which has a lot of overhead and repeats much work for every character that Data.Text.IO.hPutStr has already done. Is this something that could be improved upon?
This also seems to be the case with lazy text hPutStr except that it repeats work for every chunk instead of every char.
The text was updated successfully, but these errors were encountered: