()
| 23 | ) |
| 24 | |
| 25 | func init() { |
| 26 | var b bytes.Buffer |
| 27 | for i := range itoaOffset { |
| 28 | itoaOffset[i] = uint32(b.Len()) |
| 29 | b.WriteString(strconv.Itoa(i + minItoa)) |
| 30 | } |
| 31 | itoaBuffer = b.String() |
| 32 | } |
| 33 | |
| 34 | func itoa(i int64) string { |
| 35 | if i >= minItoa && i <= maxItoa { |
nothing calls this directly
no test coverage detected