(b []byte, r rune)
| 558 | } |
| 559 | |
| 560 | func appendRune(b []byte, r rune) []byte { |
| 561 | n := len(b) |
| 562 | b = append(b, 0, 0, 0, 0) |
| 563 | return b[:n+utf8.EncodeRune(b[n:], r)] |
| 564 | } |
| 565 | |
| 566 | func appendCoerceInvalidUTF8(b []byte, s []byte) []byte { |
| 567 | c := [4]byte{} |
no outgoing calls
no test coverage detected
searching dependent graphs…