|
|
|
|
|
by chrisseaton
1534 days ago
|
|
> A mutable string is replaced with (in Lua) a mutable array containing immutable string fragments, which are made into a string using the builtin table.concat. That's what TruffleRuby does internally! We give you 'mutable' Ruby strings, but really they're made up of fragments of immutable strings. |
|
Edit: I'm guessing you're saying they're immutable but not necessarily interned. Ok.