gitextract_e730zr57/ ├── .cmake-format.py ├── .github/ │ └── workflows/ │ └── ccpp.yaml ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── _clang-format ├── autojsoncxx/ │ ├── autojsoncxx.hpp │ ├── autojsoncxx.py │ ├── examples/ │ │ ├── failure/ │ │ │ ├── duplicate_key.json │ │ │ ├── duplicate_key_user.json │ │ │ ├── hard.json │ │ │ ├── integer_string.json │ │ │ ├── map_element_mismatch.json │ │ │ ├── missing_required.json │ │ │ ├── null_in_key.json │ │ │ ├── out_of_range.json │ │ │ ├── single_object.json │ │ │ └── unknown_field.json │ │ └── success/ │ │ ├── hard.json │ │ ├── user_array.json │ │ ├── user_array_compact.json │ │ └── user_map.json │ ├── userdef.hpp │ └── userdef.json ├── cmake/ │ └── staticjson-config.cmake.in ├── examples/ │ ├── failure/ │ │ ├── duplicate_key.json │ │ ├── duplicate_key_user.json │ │ ├── hard.json │ │ ├── integer_string.json │ │ ├── invalid_enum.json │ │ ├── map_element_mismatch.json │ │ ├── missing_required.json │ │ ├── null_in_key.json │ │ ├── out_of_range.json │ │ ├── single_object.json │ │ ├── tensor_length_error.json │ │ ├── tensor_type_mismatch.json │ │ └── unknown_field.json │ └── success/ │ ├── hard.json │ ├── tensor.json │ ├── user_array.json │ ├── user_array_compact.json │ └── user_map.json ├── format.sh ├── include/ │ └── staticjson/ │ ├── basic.hpp │ ├── document.hpp │ ├── enum.hpp │ ├── error.hpp │ ├── forward_declarations.hpp │ ├── io.hpp │ ├── optional_support.hpp │ ├── primitive_types.hpp │ ├── staticjson.hpp │ └── stl_types.hpp ├── src/ │ └── staticjson.cpp └── test/ ├── myarray.hpp ├── test_autojsoncxx.cpp ├── test_basic.cpp ├── test_example.cpp ├── test_instantiation.cpp ├── test_integration.cpp ├── test_memory_usage.cpp └── test_tensor.cpp