Hacker News new | ask | show | jobs
by chrisseaton 3478 days ago
> I can't imagine how you would even implement a string as anything other than a rune array.

You can also implement strings using a tree data structure. We do this in an implementation of Ruby that I work on because it can make concatenation faster.