| 277 | } |
| 278 | |
| 279 | inline void SkipWhitespace() { |
| 280 | char c; |
| 281 | while ((c = s_.Peek()) == ' ' || c == '\n' || c == '\r' || c == '\t') s_.Take(); |
| 282 | } |
| 283 | |
| 284 | /// The following function is used to skip a specific JSON value. It maintains logic |
| 285 | /// consistent with rapidjson, consuming the stream and returning true upon successfully |