MCPcopy Create free account
hub / github.com/Shopify/heap-profiler / string_content

Method string_content

ext/heap_profiler/simdjson.cpp:3269–3269  ·  view source on GitHub ↗

Only characters inside the string (not including the quotes)

Source from the content-addressed store, hash-verified

3267 simdjson_really_inline uint64_t string_end() const { return _quote & ~_in_string; }
3268 // Only characters inside the string (not including the quotes)
3269 simdjson_really_inline uint64_t string_content() const { return _in_string & ~_quote; }
3270 // Return a mask of whether the given characters are inside a string (only works on non-quotes)
3271 simdjson_really_inline uint64_t non_quote_inside_string(uint64_t mask) const { return mask & _in_string; }
3272 // Return a mask of whether the given characters are inside a string (only works on non-quotes)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected