Let's say we have a (Unicode) string and want to set a specific rune by index, pretty much like we would for a normal string:
str[idx] = ch
How should I go about this, only with Runes?
You can something like...
let newRune = "者".runeAt(0)
var allRunes = str.toRunes()
allRunes[idx] = newRune
let newStr = $allRunes