Return true if the code unit is low surrogate
| 297 | |
| 298 | // Return true if the code unit is low surrogate |
| 299 | static bool isLowSurrogate(uint16_t val) { |
| 300 | return val >= 0xDC00 && val <= 0xDFFF; |
| 301 | } |
| 302 | |
| 303 | /** |
| 304 | * Class to serve as base JSON context and as base class for other context |