(ch rune)
| 287 | ) |
| 288 | |
| 289 | func IsHighSurrogate(ch rune) bool { |
| 290 | return utf16.IsSurrogate(ch) && ch < SurrogateLowStart |
| 291 | } |
| 292 | |
| 293 | func IsLowSurrogate(ch rune) bool { |
| 294 | return utf16.IsSurrogate(ch) && ch >= SurrogateLowStart |
no outgoing calls
no test coverage detected