DEPRECIATED: `scratch` is no longer used, FormatBits2 is available. FormatBits computes the string representation of u in the given base. If neg is set, u is treated as negative int64 value. If append_ is set, the string is appended to dst and the resulting byte slice is returned as the first resu
(scratch *FormatBitsScratch, dst FormatBitsWriter, u uint64, base int, neg bool)
| 71 | // as the second result value. |
| 72 | // |
| 73 | func FormatBits(scratch *FormatBitsScratch, dst FormatBitsWriter, u uint64, base int, neg bool) { |
| 74 | FormatBits2(dst, u, base, neg) |
| 75 | } |
| 76 | |
| 77 | // FormatBits2 computes the string representation of u in the given base. |
| 78 | // If neg is set, u is treated as negative int64 value. If append_ is |
nothing calls this directly
no test coverage detected
searching dependent graphs…