(u0, u1 uint64)
| 1045 | } |
| 1046 | |
| 1047 | func uintStringsAreSorted(u0, u1 uint64) bool { |
| 1048 | var b0, b1 [32]byte |
| 1049 | return string(strconv.AppendUint(b0[:0], u0, 10)) < string(strconv.AppendUint(b1[:0], u1, 10)) |
| 1050 | } |
| 1051 | |
| 1052 | func stringToBytes(s string) []byte { |
| 1053 | return *(*[]byte)(unsafe.Pointer(&sliceHeader{ |
no outgoing calls
no test coverage detected
searching dependent graphs…