(val float64)
| 167 | } |
| 168 | |
| 169 | func float64ToString(val float64) string { |
| 170 | return strconv.FormatFloat(val, 'f', -1, 64) |
| 171 | } |
| 172 | |
| 173 | func int32ToBytes(n int32) []byte { |
| 174 | bytesBuffer := bytes.NewBuffer([]byte{}) |
no outgoing calls
searching dependent graphs…