(b *[]byte)
| 24 | } |
| 25 | |
| 26 | func parseFloat(b *[]byte) (float64, error) { |
| 27 | return strconv.ParseFloat(*(*string)(unsafe.Pointer(b)), 64) |
| 28 | } |
| 29 | |
| 30 | // A hack until issue golang/go#2632 is fixed. |
| 31 | // See: https://github.com/golang/go/issues/2632 |
nothing calls this directly
no outgoing calls
no test coverage detected