(b []byte)
| 62 | } |
| 63 | |
| 64 | func ParseFloat64(b []byte) (float64, error) { |
| 65 | return strconv.ParseFloat(UnsafeString(b), 64) |
| 66 | } |
| 67 | |
| 68 | func ReinterpretSlice[Out, In any](in []In) []Out { |
| 69 | outData := (*Out)(unsafe.Pointer(unsafe.SliceData(in))) |
no test coverage detected