7#ifndef SIMDJSON_GENERIC_COMPILE_TIME_JSON_H
8#define SIMDJSON_GENERIC_COMPILE_TIME_JSON_H
10#if SIMDJSON_STATIC_REFLECTION
23namespace compile_time {
63template <constevalutil::fixed_
string json_str>
consteval auto parse_json();
69template <simdjson::constevalutil::fixed_
string str>
70consteval auto operator ""_json() {
71 return simdjson::compile_time::parse_json<str>();
The top level simdjson namespace, containing everything the library provides.