(i0, i1 int64)
| 1040 | } |
| 1041 | |
| 1042 | func intStringsAreSorted(i0, i1 int64) bool { |
| 1043 | var b0, b1 [32]byte |
| 1044 | return string(strconv.AppendInt(b0[:0], i0, 10)) < string(strconv.AppendInt(b1[:0], i1, 10)) |
| 1045 | } |
| 1046 | |
| 1047 | func uintStringsAreSorted(u0, u1 uint64) bool { |
| 1048 | var b0, b1 [32]byte |
no outgoing calls
no test coverage detected
searching dependent graphs…