question: this line of code
str := string(line)
line is of type [] byte. I want to see the implementation of the string function. Where can I see it?
Click the string function to jump to
// string is the set of all strings of 8-bit bytes, conventionally but not
// necessarily representing UTF-8-encoded text. A string may be empty, but
// not nil. Values of string type are immutable.
type string string
string function not found