Start quotes of strings
| 3263 | simdjson_really_inline uint64_t quote() const { return _quote; } |
| 3264 | // Start quotes of strings |
| 3265 | simdjson_really_inline uint64_t string_start() const { return _quote & _in_string; } |
| 3266 | // End quotes of strings |
| 3267 | simdjson_really_inline uint64_t string_end() const { return _quote & ~_in_string; } |
| 3268 | // Only characters inside the string (not including the quotes) |
nothing calls this directly
no outgoing calls
no test coverage detected