Hacker News new | ask | show | jobs
by jerf 3474 days ago
Just so people know, there are arrays used for text manipulation in Haskell in the Data.Text library, and bytestrings in the ByteString library. The language as specified does indeed have strings in a linked list of numbers, but if you even remotely care about performance you don't use those, and most libraries don't either nowadays.
1 comments

Thanks! I guess I was kind of hoping for someone with actual knowledge to fill in the details.