strconv: optimize Parse for []byte arguments ยท golang/go@cf26fbb
When one has a []byte on hand, but desires to call the Parse functions, the conversion from []byte to string would allocate. var b []byte = ... v, err := strconv.ParseXXX(string(b), ...) ...