(high rune, low rune)
| 299 | } |
| 300 | |
| 301 | func SurrogatePairToCodePoint(high rune, low rune) rune { |
| 302 | return utf16.DecodeRune(high, low) |
| 303 | } |
| 304 | |
| 305 | func CodePointToSurrogatePair(ch rune) (high rune, low rune) { |
| 306 | return utf16.EncodeRune(ch) |
no outgoing calls
no test coverage detected