(high, low rune)
| 16 | const basicMultilingualPlaneOffset = 0xFFFF |
| 17 | |
| 18 | func combineUTF16Surrogates(high, low rune) rune { |
| 19 | return supplementalPlanesOffset + (high-highSurrogateOffset)<<10 + (low - lowSurrogateOffset) |
| 20 | } |
| 21 | |
| 22 | const badHex = -1 |
| 23 |
no outgoing calls
no test coverage detected
searching dependent graphs…