Closed
Description
IMO, using byte
alias doesn't hide the fact that the number is unsigned 8bit integer, and this doesn't change code readability. Rather, uint8
is more explicit and fits more with Go way.
On the other hand, I don't have a strong opinion on rune
, that is an alias for int32
. I think rune
makes code readable to some extent.