I need to convert an int32
to string
in Golang. Is it possible to convert int32
to string
in Golang without converting to int
or int64
first?
Itoa
needs an int
. FormatInt
needs an int64
.
I need to convert an int32
to string
in Golang. Is it possible to convert int32
to string
in Golang without converting to int
or int64
first?
Itoa
needs an int
. FormatInt
needs an int64
.