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
Casting `string`s to `[]rune` causes an allocation that we don't need.
This can be replaced with a call to `utf8.DecodeRuneInString`.
The size check in `WriteRune` can be avoided for constant `rune`s that
are a single `byte`.
0 commit comments