Only characters inside the string (not including the quotes)
| 3273 | simdjson_inline uint64_t string_end() const { return _quote & ~_in_string; } |
| 3274 | // Only characters inside the string (not including the quotes) |
| 3275 | simdjson_inline uint64_t string_content() const { return _in_string & ~_quote; } |
| 3276 | // Return a mask of whether the given characters are inside a string (only works on non-quotes) |
| 3277 | simdjson_inline uint64_t non_quote_inside_string(uint64_t mask) const { return mask & _in_string; } |
| 3278 | // Return a mask of whether the given characters are inside a string (only works on non-quotes) |
nothing calls this directly
no outgoing calls
no test coverage detected