slughorn 0.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- slughorn-0.0.2/.gitattributes +5 -0
- slughorn-0.0.2/.github/workflows/wheels.yml +303 -0
- slughorn-0.0.2/.gitignore +49 -0
- slughorn-0.0.2/.gitmodules +15 -0
- slughorn-0.0.2/CMakeLists.txt +490 -0
- slughorn-0.0.2/LICENSE +21 -0
- slughorn-0.0.2/PKG-INFO +604 -0
- slughorn-0.0.2/README.md +595 -0
- slughorn-0.0.2/bin/slughorn +840 -0
- slughorn-0.0.2/bin/slughorn-msdf +175 -0
- slughorn-0.0.2/bin/slughorned +549 -0
- slughorn-0.0.2/example/CMakeLists.txt +88 -0
- slughorn-0.0.2/example/slughorn-example-glfw.cpp +1048 -0
- slughorn-0.0.2/ext/architecture-light.svg +215 -0
- slughorn-0.0.2/ext/architecture.svg +210 -0
- slughorn-0.0.2/ext/earcut/.clang-format +8 -0
- slughorn-0.0.2/ext/earcut/.github/workflows/build.yml +287 -0
- slughorn-0.0.2/ext/earcut/.gitignore +2 -0
- slughorn-0.0.2/ext/earcut/CMakeLists.txt +198 -0
- slughorn-0.0.2/ext/earcut/CODEOWNERS +1 -0
- slughorn-0.0.2/ext/earcut/LICENSE +15 -0
- slughorn-0.0.2/ext/earcut/README.md +147 -0
- slughorn-0.0.2/ext/earcut/earcut.png +0 -0
- slughorn-0.0.2/ext/earcut/include/mapbox/earcut.hpp +1204 -0
- slughorn-0.0.2/ext/earcut/test/bench.cpp +170 -0
- slughorn-0.0.2/ext/earcut/test/comparison/earcut.hpp +33 -0
- slughorn-0.0.2/ext/earcut/test/comparison/libtess2.hpp +104 -0
- slughorn-0.0.2/ext/earcut/test/fixtures/geometries.cpp +97 -0
- slughorn-0.0.2/ext/earcut/test/fixtures/geometries.hpp +62 -0
- slughorn-0.0.2/ext/earcut/test/fixtures/mvt_fixture.cpp +139 -0
- slughorn-0.0.2/ext/earcut/test/fixtures/mvt_fixture.hpp +29 -0
- slughorn-0.0.2/ext/earcut/test/test.cpp +361 -0
- slughorn-0.0.2/ext/earcut/test/viz.cpp +527 -0
- slughorn-0.0.2/ext/json/.cirrus.yml +17 -0
- slughorn-0.0.2/ext/json/.clang-tidy +85 -0
- slughorn-0.0.2/ext/json/.github/CODEOWNERS +6 -0
- slughorn-0.0.2/ext/json/.github/CODE_OF_CONDUCT.md +132 -0
- slughorn-0.0.2/ext/json/.github/CONTRIBUTING.md +225 -0
- slughorn-0.0.2/ext/json/.github/FUNDING.yml +2 -0
- slughorn-0.0.2/ext/json/.github/ISSUE_TEMPLATE/bug.yaml +95 -0
- slughorn-0.0.2/ext/json/.github/ISSUE_TEMPLATE/config.yml +5 -0
- slughorn-0.0.2/ext/json/.github/PULL_REQUEST_TEMPLATE.md +9 -0
- slughorn-0.0.2/ext/json/.github/SECURITY.md +25 -0
- slughorn-0.0.2/ext/json/.github/config.yml +22 -0
- slughorn-0.0.2/ext/json/.github/dependabot.yml +31 -0
- slughorn-0.0.2/ext/json/.github/external_ci/appveyor.yml +91 -0
- slughorn-0.0.2/ext/json/.github/labeler.yml +38 -0
- slughorn-0.0.2/ext/json/.github/workflows/check_amalgamation.yml +76 -0
- slughorn-0.0.2/ext/json/.github/workflows/cifuzz.yml +35 -0
- slughorn-0.0.2/ext/json/.github/workflows/codeql-analysis.yml +49 -0
- slughorn-0.0.2/ext/json/.github/workflows/comment_check_amalgamation.yml +81 -0
- slughorn-0.0.2/ext/json/.github/workflows/dependency-review.yml +27 -0
- slughorn-0.0.2/ext/json/.github/workflows/flawfinder.yml +46 -0
- slughorn-0.0.2/ext/json/.github/workflows/labeler.yml +26 -0
- slughorn-0.0.2/ext/json/.github/workflows/macos.yml +121 -0
- slughorn-0.0.2/ext/json/.github/workflows/publish_documentation.yml +46 -0
- slughorn-0.0.2/ext/json/.github/workflows/scorecards.yml +81 -0
- slughorn-0.0.2/ext/json/.github/workflows/semgrep.yml +54 -0
- slughorn-0.0.2/ext/json/.github/workflows/stale.yml +34 -0
- slughorn-0.0.2/ext/json/.github/workflows/ubuntu.yml +283 -0
- slughorn-0.0.2/ext/json/.github/workflows/windows.yml +124 -0
- slughorn-0.0.2/ext/json/.gitignore +47 -0
- slughorn-0.0.2/ext/json/.reuse/dep5 +36 -0
- slughorn-0.0.2/ext/json/.reuse/templates/json.jinja2 +11 -0
- slughorn-0.0.2/ext/json/.reuse/templates/json_support.jinja2 +11 -0
- slughorn-0.0.2/ext/json/BUILD.bazel +80 -0
- slughorn-0.0.2/ext/json/CITATION.cff +14 -0
- slughorn-0.0.2/ext/json/CMakeLists.txt +237 -0
- slughorn-0.0.2/ext/json/ChangeLog.md +3272 -0
- slughorn-0.0.2/ext/json/FILES.md +239 -0
- slughorn-0.0.2/ext/json/LICENSE.MIT +21 -0
- slughorn-0.0.2/ext/json/LICENSES/Apache-2.0.txt +73 -0
- slughorn-0.0.2/ext/json/LICENSES/BSD-3-Clause.txt +11 -0
- slughorn-0.0.2/ext/json/LICENSES/CC0-1.0.txt +121 -0
- slughorn-0.0.2/ext/json/LICENSES/GPL-3.0-only.txt +232 -0
- slughorn-0.0.2/ext/json/LICENSES/MIT.txt +9 -0
- slughorn-0.0.2/ext/json/MODULE.bazel +7 -0
- slughorn-0.0.2/ext/json/Makefile +266 -0
- slughorn-0.0.2/ext/json/Package.swift +22 -0
- slughorn-0.0.2/ext/json/README.md +1893 -0
- slughorn-0.0.2/ext/json/cmake/ci.cmake +725 -0
- slughorn-0.0.2/ext/json/cmake/clang_flags.cmake +22 -0
- slughorn-0.0.2/ext/json/cmake/config.cmake.in +15 -0
- slughorn-0.0.2/ext/json/cmake/detect_libcpp_version.cpp +31 -0
- slughorn-0.0.2/ext/json/cmake/download_test_data.cmake +87 -0
- slughorn-0.0.2/ext/json/cmake/gcc_flags.cmake +363 -0
- slughorn-0.0.2/ext/json/cmake/nlohmann_jsonConfigVersion.cmake.in +20 -0
- slughorn-0.0.2/ext/json/cmake/pkg-config.pc.in +7 -0
- slughorn-0.0.2/ext/json/cmake/requirements/requirements-cppcheck.txt +1 -0
- slughorn-0.0.2/ext/json/cmake/requirements/requirements-cpplint.txt +1 -0
- slughorn-0.0.2/ext/json/cmake/requirements/requirements-reuse.txt +1 -0
- slughorn-0.0.2/ext/json/cmake/scripts/gen_bazel_build_file.cmake +24 -0
- slughorn-0.0.2/ext/json/cmake/test.cmake +273 -0
- slughorn-0.0.2/ext/json/docs/Makefile +44 -0
- slughorn-0.0.2/ext/json/docs/README.md +23 -0
- slughorn-0.0.2/ext/json/docs/avatars.png +0 -0
- slughorn-0.0.2/ext/json/docs/docset/Info.plist +20 -0
- slughorn-0.0.2/ext/json/docs/docset/Makefile +88 -0
- slughorn-0.0.2/ext/json/docs/docset/README.md +19 -0
- slughorn-0.0.2/ext/json/docs/docset/docSet.sql +244 -0
- slughorn-0.0.2/ext/json/docs/docset/docset.json +10 -0
- slughorn-0.0.2/ext/json/docs/docset/icon.png +0 -0
- slughorn-0.0.2/ext/json/docs/docset/icon@2x.png +0 -0
- slughorn-0.0.2/ext/json/docs/json.gif +0 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/Makefile +45 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/adl_serializer/from_json.md +73 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/adl_serializer/index.md +35 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/adl_serializer/to_json.md +43 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/accept.md +120 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/array.md +60 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/array_t.md +68 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/at.md +226 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/back.md +65 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/basic_json.md +402 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/begin.md +42 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/binary.md +66 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/binary_t.md +89 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/boolean_t.md +42 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/cbegin.md +41 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/cbor_tag_handler_t.md +42 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/cend.md +41 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/clear.md +58 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/contains.md +118 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/count.md +78 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/crbegin.md +41 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/crend.md +42 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/default_object_comparator_t.md +35 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/diff.md +62 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/dump.md +79 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/emplace.md +61 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/emplace_back.md +65 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/empty.md +66 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/end.md +42 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/end_pos.md +68 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/erase.md +211 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/error_handler_t.md +42 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/exception.md +87 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/find.md +86 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/flatten.md +50 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/from_bjdata.md +93 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/from_bson.md +110 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/from_cbor.md +117 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/from_msgpack.md +109 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/from_ubjson.md +106 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/front.md +58 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/get.md +136 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/get_allocator.md +31 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/get_binary.md +45 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/get_ptr.md +94 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/get_ref.md +68 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/get_to.md +58 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/index.md +336 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/input_format_t.md +52 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/insert.md +190 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/invalid_iterator.md +77 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_array.md +39 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_binary.md +39 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_boolean.md +39 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_discarded.md +72 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_null.md +39 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_number.md +56 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_number_float.md +46 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_number_integer.md +47 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_number_unsigned.md +46 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_object.md +39 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_primitive.md +69 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_string.md +39 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_structured.md +63 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/items.md +100 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/json_base_class_t.md +45 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/json_serializer.md +41 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/max_size.md +60 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/merge_patch.md +63 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/meta.md +56 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/number_float_t.md +70 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/number_integer_t.md +76 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/number_unsigned_t.md +76 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/object.md +63 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/object_comparator_t.md +32 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/object_t.md +114 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator+=.md +124 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator=.md +43 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator[].md +250 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator_ValueType.md +82 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator_eq.md +168 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator_ge.md +86 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator_gt.md +86 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator_le.md +87 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator_lt.md +96 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator_ne.md +98 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator_spaceship.md +100 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator_value_t.md +54 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/other_error.md +77 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/out_of_range.md +78 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/parse.md +246 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/parse_error.md +86 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/parse_event_t.md +29 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/parser_callback_t.md +73 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/patch.md +73 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/patch_inplace.md +70 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/push_back.md +120 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/rbegin.md +42 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/rend.md +43 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/sax_parse.md +134 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/size.md +57 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/start_pos.md +68 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/std_hash.md +34 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/std_swap.md +51 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/string_t.md +66 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/swap.md +157 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/to_bjdata.md +78 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/to_bson.md +59 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/to_cbor.md +61 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/to_msgpack.md +59 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/to_string.md +65 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/to_ubjson.md +70 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/type.md +54 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/type_error.md +78 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/type_name.md +54 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/unflatten.md +61 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/update.md +147 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/value.md +183 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/value_t.md +81 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/~basic_json.md +21 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/byte_container_with_subtype/byte_container_with_subtype.md +46 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/byte_container_with_subtype/clear_subtype.md +36 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/byte_container_with_subtype/has_subtype.md +39 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/byte_container_with_subtype/index.md +35 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/byte_container_with_subtype/set_subtype.md +41 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/byte_container_with_subtype/subtype.md +42 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json.md +28 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/back.md +40 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/empty.md +39 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/index.md +52 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/json_pointer.md +41 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/operator_eq.md +113 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/operator_ne.md +109 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/operator_slash.md +64 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/operator_slasheq.md +61 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/operator_string_t.md +52 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/parent_pointer.md +35 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/pop_back.md +35 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/push_back.md +39 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/string_t.md +28 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/to_string.md +40 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/binary.md +40 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/boolean.md +36 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/end_array.md +31 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/end_object.md +31 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/index.md +44 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/key.md +40 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/null.md +31 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/number_float.md +39 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/number_integer.md +36 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/number_unsigned.md +36 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/parse_error.md +44 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/start_array.md +40 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/start_object.md +40 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/string.md +40 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/index.md +83 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_assert.md +88 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_diagnostic_positions.md +119 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_diagnostics.md +94 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_disable_enum_serialization.md +154 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_has_cpp_11.md +41 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_has_filesystem.md +43 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_has_ranges.md +31 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_has_static_rtti.md +31 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_has_three_way_comparison.md +32 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_no_io.md +35 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_noexception.md +45 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_skip_library_version_check.md +37 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_skip_unsupported_compiler_check.md +33 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_throw_user.md +75 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_use_global_udls.md +99 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_use_implicit_conversions.md +60 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_use_legacy_discarded_value_comparison.md +81 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/nlohmann_define_derived_type.md +177 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/nlohmann_define_type_intrusive.md +170 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/nlohmann_define_type_non_intrusive.md +171 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/nlohmann_json_namespace.md +41 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/nlohmann_json_namespace_begin.md +61 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/nlohmann_json_namespace_no_version.md +45 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/nlohmann_json_serialize_enum.md +85 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/nlohmann_json_version_major.md +40 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/operator_gtgt.md +64 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/operator_literal_json.md +63 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/operator_literal_json_pointer.md +66 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/operator_ltlt.md +87 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/ordered_json.md +39 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/ordered_map.md +82 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/community/code_of_conduct.md +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/community/contribution_guidelines.md +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/community/governance.md +122 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/community/index.md +7 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/community/quality_assurance.md +219 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/community/security_policy.md +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/css/custom.css +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/README.cpp +39 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/README.output +27 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/accept__string.cpp +26 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/accept__string.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/array.cpp +19 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/array.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/array_t.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/array_t.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__json_pointer.cpp +103 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__json_pointer.output +12 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__json_pointer_const.cpp +80 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__json_pointer_const.output +9 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__keytype.c++17.cpp +49 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__keytype.c++17.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__keytype_const.c++17.cpp +43 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__keytype_const.c++17.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__object_t_key_type.cpp +47 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__object_t_key_type.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__object_t_key_type_const.cpp +41 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__object_t_key_type_const.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__size_type.cpp +42 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__size_type.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__size_type_const.cpp +36 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__size_type_const.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/back.cpp +38 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/back.output +7 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__CompatibleType.cpp +214 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__CompatibleType.output +39 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__InputIt_InputIt.cpp +32 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__InputIt_InputIt.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__basic_json.cpp +17 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__basic_json.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__copyassignment.cpp +18 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__copyassignment.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__list_init_t.cpp +21 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__list_init_t.output +5 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__moveconstructor.cpp +17 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__moveconstructor.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__nullptr_t.cpp +16 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__nullptr_t.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__size_type_basic_json.cpp +18 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__size_type_basic_json.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__value_t.cpp +25 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__value_t.output +7 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/begin.cpp +16 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/begin.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/binary.cpp +16 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/binary.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/binary_t.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/binary_t.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/boolean_t.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/boolean_t.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__byte_container_with_subtype.cpp +23 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__byte_container_with_subtype.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__clear_subtype.cpp +21 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__clear_subtype.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__has_subtype.cpp +19 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__has_subtype.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__set_subtype.cpp +22 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__set_subtype.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__subtype.cpp +22 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__subtype.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/cbegin.cpp +16 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/cbegin.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/cbor_tag_handler_t.cpp +28 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/cbor_tag_handler_t.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/cend.cpp +19 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/cend.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/clear.cpp +34 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/clear.output +7 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/comments.cpp +31 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/comments.output +12 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/contains__json_pointer.cpp +43 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/contains__json_pointer.output +7 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/contains__keytype.c++17.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/contains__keytype.c++17.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/contains__object_t_key_type.cpp +18 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/contains__object_t_key_type.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/count__keytype.c++17.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/count__keytype.c++17.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/count__object_t_key_type.cpp +18 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/count__object_t_key_type.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/crbegin.cpp +16 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/crbegin.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/crend.cpp +19 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/crend.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/default_object_comparator_t.cpp +11 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/default_object_comparator_t.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostic_positions.cpp +51 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostic_positions.output +50 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostic_positions_exception.cpp +30 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostic_positions_exception.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostics_extended.cpp +22 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostics_extended.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostics_extended_positions.cpp +31 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostics_extended_positions.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostics_standard.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostics_standard.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diff.cpp +37 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diff.output +25 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/dump.cpp +48 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/dump.output +55 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/emplace.cpp +31 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/emplace.output +6 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/emplace_back.cpp +24 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/emplace_back.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/empty.cpp +30 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/empty.output +9 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/end.cpp +19 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/end.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__IteratorType.cpp +31 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__IteratorType.output +6 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__IteratorType_IteratorType.cpp +31 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__IteratorType_IteratorType.output +6 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__keytype.c++17.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__keytype.c++17.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__object_t_key_type.cpp +18 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__object_t_key_type.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__size_type.cpp +16 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__size_type.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/error_handler_t.cpp +24 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/error_handler_t.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/exception.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/exception.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/find__keytype.c++17.cpp +22 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/find__keytype.c++17.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/find__object_t_key_type.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/find__object_t_key_type.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/flatten.cpp +32 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/flatten.output +12 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_bjdata.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_bjdata.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_bson.cpp +21 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_bson.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_cbor.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_cbor.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_json__default_constructible.cpp +37 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_json__default_constructible.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_json__non_default_constructible.cpp +53 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_json__non_default_constructible.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_msgpack.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_msgpack.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_ubjson.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_ubjson.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/front.cpp +29 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/front.output +6 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get__PointerType.cpp +21 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get__PointerType.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get__ValueType_const.cpp +50 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get__ValueType_const.output +11 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_allocator.cpp +18 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_allocator.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_binary.cpp +16 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_binary.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_ptr.cpp +21 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_ptr.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_ref.cpp +27 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_ref.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_to.cpp +59 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_to.output +11 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert.cpp +17 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert__count.cpp +17 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert__count.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert__ilist.cpp +17 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert__ilist.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert__range.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert__range.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert__range_object.cpp +21 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert__range_object.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/invalid_iterator.cpp +21 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/invalid_iterator.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_array.cpp +30 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_array.output +9 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_binary.cpp +30 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_binary.output +9 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_boolean.cpp +30 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_boolean.output +9 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_discarded.cpp +30 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_discarded.output +9 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_null.cpp +30 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_null.output +9 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_number.cpp +30 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_number.output +9 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_number_float.cpp +30 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_number_float.output +9 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_number_integer.cpp +30 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_number_integer.output +9 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_number_unsigned.cpp +30 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_number_unsigned.output +9 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_object.cpp +30 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_object.output +9 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_primitive.cpp +30 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_primitive.output +9 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_string.cpp +30 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_string.output +9 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_structured.cpp +30 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_structured.output +9 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/items.cpp +23 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/items.output +7 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_base_class_t.cpp +88 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_base_class_t.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_lines.cpp +22 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_lines.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer.cpp +47 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__back.cpp +15 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__back.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__empty.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__empty.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator__equal.cpp +19 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator__equal.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator__equal_stringtype.cpp +33 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator__equal_stringtype.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator__notequal.cpp +19 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator__notequal.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator__notequal_stringtype.cpp +32 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator__notequal_stringtype.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator_add.cpp +23 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator_add.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator_add_binary.cpp +19 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator_add_binary.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator_string_t.cpp +19 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator_string_t.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__parent_pointer.cpp +18 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__parent_pointer.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__pop_back.cpp +21 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__pop_back.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__push_back.cpp +21 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__push_back.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__string_t.cpp +13 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__string_t.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__to_string.cpp +34 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__to_string.output +12 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/max_size.cpp +25 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/max_size.output +7 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/merge_patch.cpp +41 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/merge_patch.output +11 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/meta.cpp +11 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/meta.output +17 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_derived_type_intrusive_macro.cpp +37 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_derived_type_intrusive_macro.output +6 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_explicit.cpp +62 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_explicit.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_macro.cpp +48 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_macro.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_only_serialize_explicit.cpp +39 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_only_serialize_explicit.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_only_serialize_macro.cpp +33 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_only_serialize_macro.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_with_default_explicit.cpp +57 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_with_default_explicit.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_with_default_macro.cpp +42 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_with_default_macro.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_explicit.cpp +55 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_explicit.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_macro.cpp +41 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_macro.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_only_serialize_explicit.cpp +32 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_only_serialize_explicit.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_only_serialize_macro.cpp +26 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_only_serialize_macro.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_with_default_explicit.cpp +55 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_with_default_explicit.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_with_default_macro.cpp +40 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_with_default_macro.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_namespace.cpp +14 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_namespace.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_namespace_begin.c++17.cpp +33 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_namespace_begin.c++17.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_namespace_no_version.cpp +13 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_namespace_no_version.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_serialize_enum.cpp +59 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_serialize_enum.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_serialize_enum_2.cpp +33 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_serialize_enum_2.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_version.cpp +12 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_version.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/number_float_t.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/number_float_t.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/number_integer_t.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/number_integer_t.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/number_unsigned_t.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/number_unsigned_t.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/object.cpp +28 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/object.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/object_comparator_t.cpp +11 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/object_comparator_t.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/object_t.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/object_t.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__ValueType.cpp +60 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__ValueType.output +12 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__equal.cpp +24 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__equal.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__equal__nullptr_t.cpp +22 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__equal__nullptr_t.output +5 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__equal__specializations.cpp +16 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__equal__specializations.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__greater.cpp +24 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__greater.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__greaterequal.cpp +24 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__greaterequal.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__less.cpp +24 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__less.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__lessequal.cpp +24 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__lessequal.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__notequal.cpp +24 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__notequal.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__notequal__nullptr_t.cpp +22 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__notequal__nullptr_t.output +5 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__value_t.cpp +38 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__value_t.output +8 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__json_pointer.cpp +49 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__json_pointer.output +8 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__json_pointer_const.cpp +25 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__json_pointer_const.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__keytype.c++17.cpp +34 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__keytype.c++17.output +19 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__keytype_const.c++17.cpp +18 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__keytype_const.c++17.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__object_t_key_type.cpp +32 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__object_t_key_type.output +19 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__object_t_key_type_const.cpp +16 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__object_t_key_type_const.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__size_type.cpp +25 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__size_type.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__size_type_const.cpp +13 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__size_type_const.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_deserialize.cpp +26 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_deserialize.output +13 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_literal_json.cpp +13 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_literal_json.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_literal_json_pointer.cpp +14 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_literal_json_pointer.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_ltlt__basic_json.cpp +21 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_ltlt__basic_json.output +22 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_ltlt__json_pointer.cpp +13 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_ltlt__json_pointer.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_spaceship__const_reference.c++20.cpp +40 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_spaceship__const_reference.c++20.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_spaceship__scalartype.c++20.cpp +40 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_spaceship__scalartype.c++20.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/ordered_json.cpp +14 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/ordered_json.output +5 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/ordered_map.cpp +43 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/ordered_map.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/other_error.cpp +30 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/other_error.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/out_of_range.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/out_of_range.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__allow_exceptions.cpp +36 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__allow_exceptions.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__array__parser_callback_t.cpp +30 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__array__parser_callback_t.output +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__contiguouscontainer__parser_callback_t.cpp +15 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__contiguouscontainer__parser_callback_t.output +6 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__istream__parser_callback_t.cpp +57 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__istream__parser_callback_t.output +34 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__iterator_pair.cpp +15 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__iterator_pair.link +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__iterator_pair.output +6 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__pointers.cpp +15 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__pointers.link +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__pointers.output +6 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__string__parser_callback_t.cpp +48 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__string__parser_callback_t.output +34 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse_error.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse_error.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/patch.cpp +33 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/patch.output +11 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/patch_inplace.cpp +35 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/patch_inplace.output +13 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/push_back.cpp +25 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/push_back.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/push_back__initializer_list.cpp +27 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/push_back__initializer_list.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/push_back__object_t__value.cpp +25 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/push_back__object_t__value.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/rbegin.cpp +16 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/rbegin.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/rend.cpp +19 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/rend.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/sax_parse.cpp +131 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/sax_parse.output +37 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/sax_parse__binary.cpp +114 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/sax_parse__binary.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/size.cpp +29 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/size.output +9 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/std_hash.cpp +19 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/std_hash.output +8 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/std_swap.cpp +19 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/std_swap.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/string_t.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/string_t.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__array_t.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__array_t.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__binary_t.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__binary_t.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__object_t.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__object_t.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__reference.cpp +18 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__reference.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__string_t.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__string_t.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_bjdata.cpp +64 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_bjdata.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_bson.cpp +22 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_bson.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_cbor.cpp +22 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_cbor.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_json.cpp +32 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_json.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_msgpack.cpp +22 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_msgpack.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_string.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_string.output +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_ubjson.cpp +64 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_ubjson.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/trailing_commas.cpp +37 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/trailing_commas.output +12 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/type.cpp +28 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/type.output +8 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/type_error.cpp +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/type_error.output +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/type_name.cpp +27 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/type_name.output +8 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/unflatten.cpp +26 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/unflatten.output +18 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/update.cpp +24 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/update.output +17 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/update__range.cpp +24 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/update__range.output +17 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/value__json_ptr.cpp +31 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/value__json_ptr.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/value__keytype.c++17.cpp +32 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/value__keytype.c++17.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/value__object_t_key_type.cpp +30 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/value__object_t_key_type.output +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/value__return_type.cpp +14 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/value__return_type.output +4 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/arbitrary_types.md +294 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/assertions.md +144 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/binary_formats/bjdata.md +206 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/binary_formats/bson.md +97 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/binary_formats/cbor.md +181 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/binary_formats/index.md +52 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/binary_formats/messagepack.md +143 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/binary_formats/ubjson.md +126 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/binary_values.md +374 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/comments.md +40 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/element_access/checked_access.md +91 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/element_access/default_value.md +63 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/element_access/index.md +9 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/element_access/unchecked_access.md +112 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/enum_conversion.md +61 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/iterators.md +155 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/json_patch.md +47 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/json_pointer.md +126 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/macros.md +135 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/merge_patch.md +20 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/modules.md +34 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/namespace.md +94 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/object_order.md +109 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/parsing/index.md +13 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/parsing/json_lines.md +49 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/parsing/parse_exceptions.md +121 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/parsing/parser_callbacks.md +83 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/parsing/sax_interface.md +76 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/trailing_commas.md +39 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/types/index.md +271 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/types/number_handling.md +328 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/home/architecture.md +124 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/home/customers.md +177 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/home/design_goals.md +17 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/home/exceptions.md +912 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/home/faq.md +180 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/home/license.md +21 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/home/releases.md +1225 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/home/sponsors.md +19 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/callback_events.png +0 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/customers.png +0 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/json.gif +0 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/json_syntax_number.png +0 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/CPM.png +0 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/bazel.svg +11 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/conan.svg +16 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/conda.svg +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/homebrew.svg +22 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/macports.svg +81 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/meson.svg +2 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/nuget.svg +21 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/spack.svg +61 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/swift.svg +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/vcpkg.png +0 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/xmake.svg +60 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/range-begin-end.svg +435 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/range-rbegin-rend.svg +1232 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/index.md +3 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/bazel/BUILD +5 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/bazel/MODULE.bazel +1 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/bazel/example.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/cget/CMakeLists.txt +7 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/cget/example.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/cmake.md +178 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/conan/CMakeLists.txt +7 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/conan/Conanfile.txt +6 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/conan/example.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/conda/example.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/cpm/CMakeLists.txt +9 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/cpm/example.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/example.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/homebrew/CMakeLists.txt +7 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/homebrew/example.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/hunter/CMakeLists.txt +15 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/hunter/example.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/index.md +18 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/macports/CMakeLists.txt +7 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/macports/example.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/meson/example.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/meson/meson.build +12 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/migration_guide.md +264 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/nuget/nuget-package-content.png +0 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/nuget/nuget-project-changes.png +0 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/nuget/nuget-project-makefile.png +0 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/nuget/nuget-search-package.png +0 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/nuget/nuget-select-package.png +0 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/package_managers.md +826 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/pkg-config.md +13 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/spack/CMakeLists.txt +7 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/spack/example.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/vcpkg/CMakeLists.txt +7 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/vcpkg/example.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/xmake/example.cpp +10 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/xmake/xmake.lua +8 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/includes/glossary.md +36 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/mkdocs.yml +383 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/requirements.txt +11 -0
- slughorn-0.0.2/ext/json/docs/mkdocs/scripts/check_structure.py +222 -0
- slughorn-0.0.2/ext/json/include/nlohmann/adl_serializer.hpp +55 -0
- slughorn-0.0.2/ext/json/include/nlohmann/byte_container_with_subtype.hpp +103 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/abi_macros.hpp +111 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/conversions/from_json.hpp +610 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/conversions/to_chars.hpp +1118 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/conversions/to_json.hpp +486 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/exceptions.hpp +291 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/hash.hpp +129 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/input/binary_reader.hpp +3087 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/input/input_adapters.hpp +550 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/input/json_sax.hpp +986 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/input/lexer.hpp +1647 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/input/parser.hpp +536 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/input/position_t.hpp +37 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/iterators/internal_iterator.hpp +35 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/iterators/iter_impl.hpp +760 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/iterators/iteration_proxy.hpp +235 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/iterators/iterator_traits.hpp +61 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/iterators/json_reverse_iterator.hpp +130 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/iterators/primitive_iterator.hpp +132 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/json_custom_base_class.hpp +39 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/json_pointer.hpp +988 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/json_ref.hpp +78 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/macro_scope.hpp +601 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/macro_unscope.hpp +47 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/call_std/begin.hpp +17 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/call_std/end.hpp +17 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/cpp_future.hpp +171 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/detected.hpp +70 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/identity_tag.hpp +21 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/is_sax.hpp +159 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/logic.hpp +54 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/std_fs.hpp +29 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/type_traits.hpp +861 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/void_t.hpp +24 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/output/binary_writer.hpp +1863 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/output/output_adapters.hpp +147 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/output/serializer.hpp +988 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/string_concat.hpp +146 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/string_escape.hpp +72 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/string_utils.hpp +37 -0
- slughorn-0.0.2/ext/json/include/nlohmann/detail/value_t.hpp +118 -0
- slughorn-0.0.2/ext/json/include/nlohmann/json.hpp +5386 -0
- slughorn-0.0.2/ext/json/include/nlohmann/json_fwd.hpp +75 -0
- slughorn-0.0.2/ext/json/include/nlohmann/ordered_map.hpp +359 -0
- slughorn-0.0.2/ext/json/include/nlohmann/thirdparty/hedley/hedley.hpp +2046 -0
- slughorn-0.0.2/ext/json/include/nlohmann/thirdparty/hedley/hedley_undef.hpp +158 -0
- slughorn-0.0.2/ext/json/meson.build +24 -0
- slughorn-0.0.2/ext/json/nlohmann_json.natvis +278 -0
- slughorn-0.0.2/ext/json/single_include/nlohmann/json.hpp +25830 -0
- slughorn-0.0.2/ext/json/single_include/nlohmann/json_fwd.hpp +187 -0
- slughorn-0.0.2/ext/json/src/modules/CMakeLists.txt +27 -0
- slughorn-0.0.2/ext/json/src/modules/json.cppm +32 -0
- slughorn-0.0.2/ext/json/tests/CMakeLists.txt +197 -0
- slughorn-0.0.2/ext/json/tests/Makefile +32 -0
- slughorn-0.0.2/ext/json/tests/abi/CMakeLists.txt +30 -0
- slughorn-0.0.2/ext/json/tests/abi/config/CMakeLists.txt +22 -0
- slughorn-0.0.2/ext/json/tests/abi/config/config.hpp +35 -0
- slughorn-0.0.2/ext/json/tests/abi/config/custom.cpp +33 -0
- slughorn-0.0.2/ext/json/tests/abi/config/default.cpp +45 -0
- slughorn-0.0.2/ext/json/tests/abi/config/noversion.cpp +44 -0
- slughorn-0.0.2/ext/json/tests/abi/diag/CMakeLists.txt +19 -0
- slughorn-0.0.2/ext/json/tests/abi/diag/diag.cpp +29 -0
- slughorn-0.0.2/ext/json/tests/abi/diag/diag.hpp +20 -0
- slughorn-0.0.2/ext/json/tests/abi/diag/diag_off.cpp +30 -0
- slughorn-0.0.2/ext/json/tests/abi/diag/diag_on.cpp +30 -0
- slughorn-0.0.2/ext/json/tests/abi/include/nlohmann/json_v3_10_5.hpp +22091 -0
- slughorn-0.0.2/ext/json/tests/abi/inline_ns/CMakeLists.txt +12 -0
- slughorn-0.0.2/ext/json/tests/abi/inline_ns/use_current.cpp +36 -0
- slughorn-0.0.2/ext/json/tests/abi/inline_ns/use_v3_10_5.cpp +22 -0
- slughorn-0.0.2/ext/json/tests/abi/main.cpp +10 -0
- slughorn-0.0.2/ext/json/tests/benchmarks/CMakeLists.txt +34 -0
- slughorn-0.0.2/ext/json/tests/benchmarks/src/benchmarks.cpp +217 -0
- slughorn-0.0.2/ext/json/tests/cmake_add_subdirectory/CMakeLists.txt +19 -0
- slughorn-0.0.2/ext/json/tests/cmake_add_subdirectory/project/CMakeLists.txt +24 -0
- slughorn-0.0.2/ext/json/tests/cmake_add_subdirectory/project/main.cpp +16 -0
- slughorn-0.0.2/ext/json/tests/cmake_fetch_content/CMakeLists.txt +21 -0
- slughorn-0.0.2/ext/json/tests/cmake_fetch_content/project/CMakeLists.txt +24 -0
- slughorn-0.0.2/ext/json/tests/cmake_fetch_content/project/main.cpp +16 -0
- slughorn-0.0.2/ext/json/tests/cmake_fetch_content2/CMakeLists.txt +21 -0
- slughorn-0.0.2/ext/json/tests/cmake_fetch_content2/project/CMakeLists.txt +19 -0
- slughorn-0.0.2/ext/json/tests/cmake_fetch_content2/project/main.cpp +16 -0
- slughorn-0.0.2/ext/json/tests/cmake_import/CMakeLists.txt +20 -0
- slughorn-0.0.2/ext/json/tests/cmake_import/project/CMakeLists.txt +15 -0
- slughorn-0.0.2/ext/json/tests/cmake_import/project/main.cpp +16 -0
- slughorn-0.0.2/ext/json/tests/cmake_import_minver/CMakeLists.txt +20 -0
- slughorn-0.0.2/ext/json/tests/cmake_import_minver/project/CMakeLists.txt +12 -0
- slughorn-0.0.2/ext/json/tests/cmake_import_minver/project/main.cpp +16 -0
- slughorn-0.0.2/ext/json/tests/cmake_target_include_directories/CMakeLists.txt +19 -0
- slughorn-0.0.2/ext/json/tests/cmake_target_include_directories/project/Bar.cpp +11 -0
- slughorn-0.0.2/ext/json/tests/cmake_target_include_directories/project/Bar.hpp +12 -0
- slughorn-0.0.2/ext/json/tests/cmake_target_include_directories/project/CMakeLists.txt +25 -0
- slughorn-0.0.2/ext/json/tests/cmake_target_include_directories/project/Foo.cpp +11 -0
- slughorn-0.0.2/ext/json/tests/cmake_target_include_directories/project/Foo.hpp +12 -0
- slughorn-0.0.2/ext/json/tests/cmake_target_include_directories/project/main.cpp +16 -0
- slughorn-0.0.2/ext/json/tests/cuda_example/CMakeLists.txt +10 -0
- slughorn-0.0.2/ext/json/tests/cuda_example/json_cuda.cu +19 -0
- slughorn-0.0.2/ext/json/tests/fuzzing.md +81 -0
- slughorn-0.0.2/ext/json/tests/module_cpp20/CMakeLists.txt +19 -0
- slughorn-0.0.2/ext/json/tests/module_cpp20/main.cpp +14 -0
- slughorn-0.0.2/ext/json/tests/reports/2016-08-29-fuzz/exec_speed.png +0 -0
- slughorn-0.0.2/ext/json/tests/reports/2016-08-29-fuzz/fuzz.tiff +0 -0
- slughorn-0.0.2/ext/json/tests/reports/2016-08-29-fuzz/high_freq.png +0 -0
- slughorn-0.0.2/ext/json/tests/reports/2016-08-29-fuzz/index.html +10 -0
- slughorn-0.0.2/ext/json/tests/reports/2016-08-29-fuzz/low_freq.png +0 -0
- slughorn-0.0.2/ext/json/tests/reports/2016-09-09-nativejson_benchmark/README.md +31 -0
- slughorn-0.0.2/ext/json/tests/reports/2016-09-09-nativejson_benchmark/conformance_Nlohmann (C++11).md +670 -0
- slughorn-0.0.2/ext/json/tests/reports/2016-09-09-nativejson_benchmark/conformance_overall_Result.png +0 -0
- slughorn-0.0.2/ext/json/tests/reports/2016-09-09-nativejson_benchmark/performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_1._Parse_Memory_(byte).png +0 -0
- slughorn-0.0.2/ext/json/tests/reports/2016-09-09-nativejson_benchmark/performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_1._Parse_Time_(ms).png +0 -0
- slughorn-0.0.2/ext/json/tests/reports/2016-09-09-nativejson_benchmark/performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_2._Stringify_Time_(ms).png +0 -0
- slughorn-0.0.2/ext/json/tests/reports/2016-09-09-nativejson_benchmark/performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_3._Prettify_Time_(ms).png +0 -0
- slughorn-0.0.2/ext/json/tests/reports/2016-09-09-nativejson_benchmark/performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_7._Code_size_FileSize_(byte).png +0 -0
- slughorn-0.0.2/ext/json/tests/reports/2016-10-02-fuzz/exec_speed.png +0 -0
- slughorn-0.0.2/ext/json/tests/reports/2016-10-02-fuzz/fuzz.tiff +0 -0
- slughorn-0.0.2/ext/json/tests/reports/2016-10-02-fuzz/high_freq.png +0 -0
- slughorn-0.0.2/ext/json/tests/reports/2016-10-02-fuzz/index.html +10 -0
- slughorn-0.0.2/ext/json/tests/reports/2016-10-02-fuzz/low_freq.png +0 -0
- slughorn-0.0.2/ext/json/tests/src/fuzzer-driver_afl.cpp +39 -0
- slughorn-0.0.2/ext/json/tests/src/fuzzer-parse_bjdata.cpp +85 -0
- slughorn-0.0.2/ext/json/tests/src/fuzzer-parse_bson.cpp +74 -0
- slughorn-0.0.2/ext/json/tests/src/fuzzer-parse_cbor.cpp +69 -0
- slughorn-0.0.2/ext/json/tests/src/fuzzer-parse_json.cpp +70 -0
- slughorn-0.0.2/ext/json/tests/src/fuzzer-parse_msgpack.cpp +69 -0
- slughorn-0.0.2/ext/json/tests/src/fuzzer-parse_ubjson.cpp +85 -0
- slughorn-0.0.2/ext/json/tests/src/make_test_data_available.hpp +31 -0
- slughorn-0.0.2/ext/json/tests/src/test_utils.hpp +33 -0
- slughorn-0.0.2/ext/json/tests/src/unit-32bit.cpp +134 -0
- slughorn-0.0.2/ext/json/tests/src/unit-algorithms.cpp +365 -0
- slughorn-0.0.2/ext/json/tests/src/unit-allocator.cpp +263 -0
- slughorn-0.0.2/ext/json/tests/src/unit-alt-string.cpp +370 -0
- slughorn-0.0.2/ext/json/tests/src/unit-assert_macro.cpp +48 -0
- slughorn-0.0.2/ext/json/tests/src/unit-binary_formats.cpp +211 -0
- slughorn-0.0.2/ext/json/tests/src/unit-bjdata.cpp +3838 -0
- slughorn-0.0.2/ext/json/tests/src/unit-bson.cpp +1296 -0
- slughorn-0.0.2/ext/json/tests/src/unit-byte_container_with_subtype.cpp +76 -0
- slughorn-0.0.2/ext/json/tests/src/unit-capacity.cpp +542 -0
- slughorn-0.0.2/ext/json/tests/src/unit-cbor.cpp +2780 -0
- slughorn-0.0.2/ext/json/tests/src/unit-class_const_iterator.cpp +393 -0
- slughorn-0.0.2/ext/json/tests/src/unit-class_iterator.cpp +468 -0
- slughorn-0.0.2/ext/json/tests/src/unit-class_lexer.cpp +226 -0
- slughorn-0.0.2/ext/json/tests/src/unit-class_parser.cpp +1754 -0
- slughorn-0.0.2/ext/json/tests/src/unit-class_parser_diagnostic_positions.cpp +1957 -0
- slughorn-0.0.2/ext/json/tests/src/unit-comparison.cpp +596 -0
- slughorn-0.0.2/ext/json/tests/src/unit-concepts.cpp +149 -0
- slughorn-0.0.2/ext/json/tests/src/unit-constructor1.cpp +1654 -0
- slughorn-0.0.2/ext/json/tests/src/unit-constructor2.cpp +186 -0
- slughorn-0.0.2/ext/json/tests/src/unit-convenience.cpp +205 -0
- slughorn-0.0.2/ext/json/tests/src/unit-conversions.cpp +1753 -0
- slughorn-0.0.2/ext/json/tests/src/unit-custom-base-class.cpp +335 -0
- slughorn-0.0.2/ext/json/tests/src/unit-deserialization.cpp +1236 -0
- slughorn-0.0.2/ext/json/tests/src/unit-diagnostic-positions-only.cpp +44 -0
- slughorn-0.0.2/ext/json/tests/src/unit-diagnostic-positions.cpp +40 -0
- slughorn-0.0.2/ext/json/tests/src/unit-diagnostics.cpp +265 -0
- slughorn-0.0.2/ext/json/tests/src/unit-disabled_exceptions.cpp +51 -0
- slughorn-0.0.2/ext/json/tests/src/unit-element_access1.cpp +880 -0
- slughorn-0.0.2/ext/json/tests/src/unit-element_access2.cpp +1844 -0
- slughorn-0.0.2/ext/json/tests/src/unit-hash.cpp +113 -0
- slughorn-0.0.2/ext/json/tests/src/unit-inspection.cpp +459 -0
- slughorn-0.0.2/ext/json/tests/src/unit-items.cpp +1433 -0
- slughorn-0.0.2/ext/json/tests/src/unit-iterators1.cpp +1630 -0
- slughorn-0.0.2/ext/json/tests/src/unit-iterators2.cpp +972 -0
- slughorn-0.0.2/ext/json/tests/src/unit-iterators3.cpp +35 -0
- slughorn-0.0.2/ext/json/tests/src/unit-json_patch.cpp +1336 -0
- slughorn-0.0.2/ext/json/tests/src/unit-json_pointer.cpp +805 -0
- slughorn-0.0.2/ext/json/tests/src/unit-large_json.cpp +29 -0
- slughorn-0.0.2/ext/json/tests/src/unit-locale-cpp.cpp +166 -0
- slughorn-0.0.2/ext/json/tests/src/unit-merge_patch.cpp +244 -0
- slughorn-0.0.2/ext/json/tests/src/unit-meta.cpp +36 -0
- slughorn-0.0.2/ext/json/tests/src/unit-modifiers.cpp +952 -0
- slughorn-0.0.2/ext/json/tests/src/unit-msgpack.cpp +1961 -0
- slughorn-0.0.2/ext/json/tests/src/unit-no-mem-leak-on-adl-serialize.cpp +86 -0
- slughorn-0.0.2/ext/json/tests/src/unit-noexcept.cpp +83 -0
- slughorn-0.0.2/ext/json/tests/src/unit-ordered_json.cpp +71 -0
- slughorn-0.0.2/ext/json/tests/src/unit-ordered_map.cpp +310 -0
- slughorn-0.0.2/ext/json/tests/src/unit-pointer_access.cpp +479 -0
- slughorn-0.0.2/ext/json/tests/src/unit-readme.cpp +304 -0
- slughorn-0.0.2/ext/json/tests/src/unit-reference_access.cpp +247 -0
- slughorn-0.0.2/ext/json/tests/src/unit-regression1.cpp +1530 -0
- slughorn-0.0.2/ext/json/tests/src/unit-regression2.cpp +1206 -0
- slughorn-0.0.2/ext/json/tests/src/unit-serialization.cpp +297 -0
- slughorn-0.0.2/ext/json/tests/src/unit-testsuites.cpp +1392 -0
- slughorn-0.0.2/ext/json/tests/src/unit-to_chars.cpp +516 -0
- slughorn-0.0.2/ext/json/tests/src/unit-type_traits.cpp +56 -0
- slughorn-0.0.2/ext/json/tests/src/unit-ubjson.cpp +2547 -0
- slughorn-0.0.2/ext/json/tests/src/unit-udl.cpp +57 -0
- slughorn-0.0.2/ext/json/tests/src/unit-udt.cpp +908 -0
- slughorn-0.0.2/ext/json/tests/src/unit-udt_macro.cpp +709 -0
- slughorn-0.0.2/ext/json/tests/src/unit-unicode1.cpp +620 -0
- slughorn-0.0.2/ext/json/tests/src/unit-unicode2.cpp +610 -0
- slughorn-0.0.2/ext/json/tests/src/unit-unicode3.cpp +324 -0
- slughorn-0.0.2/ext/json/tests/src/unit-unicode4.cpp +324 -0
- slughorn-0.0.2/ext/json/tests/src/unit-unicode5.cpp +324 -0
- slughorn-0.0.2/ext/json/tests/src/unit-user_defined_input.cpp +130 -0
- slughorn-0.0.2/ext/json/tests/src/unit-windows_h.cpp +23 -0
- slughorn-0.0.2/ext/json/tests/src/unit-wstring.cpp +99 -0
- slughorn-0.0.2/ext/json/tests/src/unit.cpp +10 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/CMakeLists.txt +45 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerCorpus.h +217 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerCrossOver.cpp +52 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerDefs.h +89 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerDictionary.h +124 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerDriver.cpp +545 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerExtFunctions.def +50 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerExtFunctions.h +35 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerExtFunctionsDlsym.cpp +52 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerExtFunctionsWeak.cpp +53 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerExtFunctionsWeakAlias.cpp +56 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerFlags.def +115 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerIO.cpp +117 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerIO.h +64 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerIOPosix.cpp +88 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerIOWindows.cpp +282 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerInterface.h +67 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerInternal.h +182 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerLoop.cpp +792 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerMain.cpp +21 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerMerge.cpp +261 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerMerge.h +70 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerMutate.cpp +527 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerMutate.h +145 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerOptions.h +68 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerRandom.h +36 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerSHA1.cpp +222 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerSHA1.h +33 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerTracePC.cpp +339 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerTracePC.h +158 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerTraceState.cpp +325 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerUtil.cpp +218 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerUtil.h +72 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerUtilDarwin.cpp +152 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerUtilLinux.cpp +24 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerUtilPosix.cpp +117 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerUtilWindows.cpp +182 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerValueBitMap.h +87 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/README.txt +2 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/afl/afl_driver.cpp +295 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/build.sh +10 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/cxx.dict +122 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/standalone/StandaloneFuzzTargetMain.c +41 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/AFLDriverTest.cpp +22 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/AbsNegAndConstant64Test.cpp +23 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/AbsNegAndConstantTest.cpp +23 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/AccumulateAllocationsTest.cpp +17 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/BufferOverflowOnInput.cpp +23 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/CMakeLists.txt +217 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/CallerCalleeTest.cpp +59 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/CounterTest.cpp +18 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/CustomCrossOverTest.cpp +63 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/CustomMutatorTest.cpp +38 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/DSO1.cpp +12 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/DSO2.cpp +12 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/DSOTestExtra.cpp +11 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/DSOTestMain.cpp +31 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/DivTest.cpp +20 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/EmptyTest.cpp +11 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/FourIndependentBranchesTest.cpp +22 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/FullCoverageSetTest.cpp +24 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/FuzzerUnittest.cpp +738 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/InitializeTest.cpp +28 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/LeakTest.cpp +17 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/LeakTimeoutTest.cpp +17 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/LoadTest.cpp +22 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/MemcmpTest.cpp +31 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/NthRunCrashTest.cpp +18 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/NullDerefOnEmptyTest.cpp +19 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/NullDerefTest.cpp +26 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/OneHugeAllocTest.cpp +28 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/OutOfMemorySingleLargeMallocTest.cpp +27 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/OutOfMemoryTest.cpp +31 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/RepeatedBytesTest.cpp +29 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/RepeatedMemcmp.cpp +22 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/ShrinkControlFlowTest.cpp +28 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/ShrinkValueProfileTest.cpp +22 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SignedIntOverflowTest.cpp +28 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SimpleCmpTest.cpp +46 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SimpleDictionaryTest.cpp +29 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SimpleHashTest.cpp +40 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SimpleTest.cpp +27 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SimpleThreadedTest.cpp +25 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SingleMemcmpTest.cpp +17 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SingleStrcmpTest.cpp +17 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SingleStrncmpTest.cpp +17 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SpamyTest.cpp +21 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/StrcmpTest.cpp +32 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/StrncmpOOBTest.cpp +21 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/StrncmpTest.cpp +28 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/StrstrTest.cpp +28 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SwapCmpTest.cpp +34 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/Switch2Test.cpp +35 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SwitchTest.cpp +58 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/ThreadedLeakTest.cpp +18 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/ThreadedTest.cpp +26 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/TimeoutEmptyTest.cpp +14 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/TimeoutTest.cpp +26 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/TraceMallocTest.cpp +27 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/UninstrumentedTest.cpp +11 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/afl-driver-extra-stats.test +28 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/afl-driver-stderr.test +10 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/caller-callee.test +2 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/coverage.test +19 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/dict1.txt +4 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/dump_coverage.test +16 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-customcrossover.test +10 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-custommutator.test +4 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-dict.test +6 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-dirs.test +15 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-fdmask.test +30 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-finalstats.test +11 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-flags.test +10 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-jobs.test +29 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-leak.test +35 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-oom-with-profile.test +6 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-oom.test +11 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-printcovpcs.test +8 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-runs.test +8 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-seed.test +3 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-segv.test +5 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-singleinputs.test +16 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-threaded.test +7 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-timeout.test +19 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-traces-hooks.test +25 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-ubsan.test +4 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer.test +57 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/hi.txt +1 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/lit.cfg +29 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/lit.site.cfg.in +4 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/merge.test +46 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/minimize_crash.test +6 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/no-coverage/CMakeLists.txt +29 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/repeated-bytes.test +2 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/shrink.test +7 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/simple-cmp.test +2 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/standalone.test +4 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/swap-cmp.test +2 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/trace-malloc.test +10 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/ubsan/CMakeLists.txt +15 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/ulimit.test +2 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/uninstrumented/CMakeLists.txt +16 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/unit/lit.cfg +7 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/unit/lit.site.cfg.in +2 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-cmp.test +2 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-cmp2.test +2 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-cmp3.test +2 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-cmp4.test +2 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-div.test +3 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-load.test +3 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-mem.test +2 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-set.test +3 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-strcmp.test +2 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-strncmp.test +2 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-switch.test +3 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/doctest/doctest.h +7135 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/doctest/doctest_compatibility.h +37 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/fifo_map/fifo_map.hpp +530 -0
- slughorn-0.0.2/ext/json/tests/thirdparty/imapdl/filterbr.py +111 -0
- slughorn-0.0.2/ext/json/tools/amalgamate/CHANGES.md +10 -0
- slughorn-0.0.2/ext/json/tools/amalgamate/README.md +65 -0
- slughorn-0.0.2/ext/json/tools/amalgamate/amalgamate.py +299 -0
- slughorn-0.0.2/ext/json/tools/amalgamate/config_json.json +8 -0
- slughorn-0.0.2/ext/json/tools/amalgamate/config_json_fwd.json +8 -0
- slughorn-0.0.2/ext/json/tools/astyle/.astylerc +80 -0
- slughorn-0.0.2/ext/json/tools/astyle/requirements.txt +1 -0
- slughorn-0.0.2/ext/json/tools/gdb_pretty_printer/README.md +79 -0
- slughorn-0.0.2/ext/json/tools/gdb_pretty_printer/nlohmann-json.py +35 -0
- slughorn-0.0.2/ext/json/tools/generate_natvis/README.md +9 -0
- slughorn-0.0.2/ext/json/tools/generate_natvis/generate_natvis.py +41 -0
- slughorn-0.0.2/ext/json/tools/generate_natvis/nlohmann_json.natvis.j2 +40 -0
- slughorn-0.0.2/ext/json/tools/generate_natvis/requirements.txt +1 -0
- slughorn-0.0.2/ext/json/tools/macro_builder/main.cpp +43 -0
- slughorn-0.0.2/ext/json/tools/serve_header/README.md +91 -0
- slughorn-0.0.2/ext/json/tools/serve_header/demo.png +0 -0
- slughorn-0.0.2/ext/json/tools/serve_header/requirements.txt +2 -0
- slughorn-0.0.2/ext/json/tools/serve_header/serve_header.py +416 -0
- slughorn-0.0.2/ext/json/tools/serve_header/serve_header.yml.example +15 -0
- slughorn-0.0.2/ext/logo-light.svg +28 -0
- slughorn-0.0.2/ext/logo.svg +28 -0
- slughorn-0.0.2/ext/msdfgen/.gitattributes +1 -0
- slughorn-0.0.2/ext/msdfgen/.gitignore +32 -0
- slughorn-0.0.2/ext/msdfgen/CHANGELOG.md +153 -0
- slughorn-0.0.2/ext/msdfgen/CMakeLists.txt +344 -0
- slughorn-0.0.2/ext/msdfgen/CMakePresets.json +285 -0
- slughorn-0.0.2/ext/msdfgen/LICENSE.txt +21 -0
- slughorn-0.0.2/ext/msdfgen/README.md +220 -0
- slughorn-0.0.2/ext/msdfgen/build-release.bat +96 -0
- slughorn-0.0.2/ext/msdfgen/cmake/CMakePresets.json +178 -0
- slughorn-0.0.2/ext/msdfgen/cmake/msdfgen-config.h.in +12 -0
- slughorn-0.0.2/ext/msdfgen/cmake/msdfgenConfig.cmake.in +58 -0
- slughorn-0.0.2/ext/msdfgen/cmake/version.cmake +19 -0
- slughorn-0.0.2/ext/msdfgen/core/Bitmap.h +60 -0
- slughorn-0.0.2/ext/msdfgen/core/Bitmap.hpp +172 -0
- slughorn-0.0.2/ext/msdfgen/core/BitmapRef.hpp +169 -0
- slughorn-0.0.2/ext/msdfgen/core/Contour.cpp +90 -0
- slughorn-0.0.2/ext/msdfgen/core/Contour.h +34 -0
- slughorn-0.0.2/ext/msdfgen/core/DistanceMapping.cpp +27 -0
- slughorn-0.0.2/ext/msdfgen/core/DistanceMapping.h +36 -0
- slughorn-0.0.2/ext/msdfgen/core/EdgeColor.h +20 -0
- slughorn-0.0.2/ext/msdfgen/core/EdgeHolder.cpp +67 -0
- slughorn-0.0.2/ext/msdfgen/core/EdgeHolder.h +41 -0
- slughorn-0.0.2/ext/msdfgen/core/MSDFErrorCorrection.cpp +496 -0
- slughorn-0.0.2/ext/msdfgen/core/MSDFErrorCorrection.h +55 -0
- slughorn-0.0.2/ext/msdfgen/core/Projection.cpp +42 -0
- slughorn-0.0.2/ext/msdfgen/core/Projection.h +37 -0
- slughorn-0.0.2/ext/msdfgen/core/Range.hpp +46 -0
- slughorn-0.0.2/ext/msdfgen/core/SDFTransformation.h +24 -0
- slughorn-0.0.2/ext/msdfgen/core/Scanline.cpp +125 -0
- slughorn-0.0.2/ext/msdfgen/core/Scanline.h +56 -0
- slughorn-0.0.2/ext/msdfgen/core/Shape.cpp +208 -0
- slughorn-0.0.2/ext/msdfgen/core/Shape.h +60 -0
- slughorn-0.0.2/ext/msdfgen/core/ShapeDistanceFinder.h +37 -0
- slughorn-0.0.2/ext/msdfgen/core/ShapeDistanceFinder.hpp +60 -0
- slughorn-0.0.2/ext/msdfgen/core/SignedDistance.hpp +38 -0
- slughorn-0.0.2/ext/msdfgen/core/Vector2.hpp +167 -0
- slughorn-0.0.2/ext/msdfgen/core/YAxisOrientation.h +17 -0
- slughorn-0.0.2/ext/msdfgen/core/arithmetics.hpp +63 -0
- slughorn-0.0.2/ext/msdfgen/core/base.h +16 -0
- slughorn-0.0.2/ext/msdfgen/core/bitmap-interpolation.hpp +27 -0
- slughorn-0.0.2/ext/msdfgen/core/contour-combiners.cpp +141 -0
- slughorn-0.0.2/ext/msdfgen/core/contour-combiners.h +47 -0
- slughorn-0.0.2/ext/msdfgen/core/convergent-curve-ordering.cpp +140 -0
- slughorn-0.0.2/ext/msdfgen/core/convergent-curve-ordering.h +11 -0
- slughorn-0.0.2/ext/msdfgen/core/edge-coloring.cpp +531 -0
- slughorn-0.0.2/ext/msdfgen/core/edge-coloring.h +29 -0
- slughorn-0.0.2/ext/msdfgen/core/edge-segments.cpp +533 -0
- slughorn-0.0.2/ext/msdfgen/core/edge-segments.h +146 -0
- slughorn-0.0.2/ext/msdfgen/core/edge-selectors.cpp +262 -0
- slughorn-0.0.2/ext/msdfgen/core/edge-selectors.h +117 -0
- slughorn-0.0.2/ext/msdfgen/core/equation-solver.cpp +72 -0
- slughorn-0.0.2/ext/msdfgen/core/equation-solver.h +14 -0
- slughorn-0.0.2/ext/msdfgen/core/export-svg.cpp +79 -0
- slughorn-0.0.2/ext/msdfgen/core/export-svg.h +11 -0
- slughorn-0.0.2/ext/msdfgen/core/generator-config.h +66 -0
- slughorn-0.0.2/ext/msdfgen/core/msdf-error-correction.cpp +183 -0
- slughorn-0.0.2/ext/msdfgen/core/msdf-error-correction.h +40 -0
- slughorn-0.0.2/ext/msdfgen/core/msdfgen.cpp +335 -0
- slughorn-0.0.2/ext/msdfgen/core/pixel-conversion.hpp +16 -0
- slughorn-0.0.2/ext/msdfgen/core/rasterization.cpp +128 -0
- slughorn-0.0.2/ext/msdfgen/core/rasterization.h +28 -0
- slughorn-0.0.2/ext/msdfgen/core/render-sdf.cpp +194 -0
- slughorn-0.0.2/ext/msdfgen/core/render-sdf.h +23 -0
- slughorn-0.0.2/ext/msdfgen/core/save-bmp.cpp +233 -0
- slughorn-0.0.2/ext/msdfgen/core/save-bmp.h +16 -0
- slughorn-0.0.2/ext/msdfgen/core/save-fl32.cpp +41 -0
- slughorn-0.0.2/ext/msdfgen/core/save-fl32.h +12 -0
- slughorn-0.0.2/ext/msdfgen/core/save-rgba.cpp +139 -0
- slughorn-0.0.2/ext/msdfgen/core/save-rgba.h +16 -0
- slughorn-0.0.2/ext/msdfgen/core/save-tiff.cpp +195 -0
- slughorn-0.0.2/ext/msdfgen/core/save-tiff.h +13 -0
- slughorn-0.0.2/ext/msdfgen/core/sdf-error-estimation.cpp +204 -0
- slughorn-0.0.2/ext/msdfgen/core/sdf-error-estimation.h +33 -0
- slughorn-0.0.2/ext/msdfgen/core/shape-description.cpp +335 -0
- slughorn-0.0.2/ext/msdfgen/core/shape-description.h +15 -0
- slughorn-0.0.2/ext/msdfgen/ext/import-font.cpp +360 -0
- slughorn-0.0.2/ext/msdfgen/ext/import-font.h +111 -0
- slughorn-0.0.2/ext/msdfgen/ext/import-svg.cpp +1073 -0
- slughorn-0.0.2/ext/msdfgen/ext/import-svg.h +32 -0
- slughorn-0.0.2/ext/msdfgen/ext/resolve-shape-geometry.cpp +133 -0
- slughorn-0.0.2/ext/msdfgen/ext/resolve-shape-geometry.h +15 -0
- slughorn-0.0.2/ext/msdfgen/ext/save-png.cpp +195 -0
- slughorn-0.0.2/ext/msdfgen/ext/save-png.h +20 -0
- slughorn-0.0.2/ext/msdfgen/icon.ico +0 -0
- slughorn-0.0.2/ext/msdfgen/main.cpp +1451 -0
- slughorn-0.0.2/ext/msdfgen/msdfgen-ext.h +27 -0
- slughorn-0.0.2/ext/msdfgen/msdfgen.h +78 -0
- slughorn-0.0.2/ext/msdfgen/msdfgen.rc +0 -0
- slughorn-0.0.2/ext/msdfgen/resource.h +0 -0
- slughorn-0.0.2/ext/msdfgen/vcpkg.json +38 -0
- slughorn-0.0.2/ext/nanosvg/.gitignore +31 -0
- slughorn-0.0.2/ext/nanosvg/CMakeLists.txt +75 -0
- slughorn-0.0.2/ext/nanosvg/Config.cmake.in +5 -0
- slughorn-0.0.2/ext/nanosvg/LICENSE.txt +18 -0
- slughorn-0.0.2/ext/nanosvg/README.md +112 -0
- slughorn-0.0.2/ext/nanosvg/example/23.svg +730 -0
- slughorn-0.0.2/ext/nanosvg/example/drawing.svg +97 -0
- slughorn-0.0.2/ext/nanosvg/example/example1.c +258 -0
- slughorn-0.0.2/ext/nanosvg/example/example2.c +69 -0
- slughorn-0.0.2/ext/nanosvg/example/nano.svg +27 -0
- slughorn-0.0.2/ext/nanosvg/example/screenshot-1.png +0 -0
- slughorn-0.0.2/ext/nanosvg/example/screenshot-2.png +0 -0
- slughorn-0.0.2/ext/nanosvg/example/stb_image_write.h +511 -0
- slughorn-0.0.2/ext/nanosvg/premake4.lua +56 -0
- slughorn-0.0.2/ext/nanosvg/src/nanosvg.h +3132 -0
- slughorn-0.0.2/ext/nanosvg/src/nanosvgrast.h +1472 -0
- slughorn-0.0.2/ext/nanosvg-00-gradient-units-field.diff +20 -0
- slughorn-0.0.2/ext/nanosvg-01-push-attr-id-inherit.diff +11 -0
- slughorn-0.0.2/ext/nanosvg-02-obb-linear-gradient-coords.diff +42 -0
- slughorn-0.0.2/ext/pybind11/.appveyor.yml +35 -0
- slughorn-0.0.2/ext/pybind11/.clang-format +38 -0
- slughorn-0.0.2/ext/pybind11/.clang-tidy +83 -0
- slughorn-0.0.2/ext/pybind11/.cmake-format.yaml +73 -0
- slughorn-0.0.2/ext/pybind11/.codespell-ignore-lines +36 -0
- slughorn-0.0.2/ext/pybind11/.gitattributes +1 -0
- slughorn-0.0.2/ext/pybind11/.github/CODEOWNERS +9 -0
- slughorn-0.0.2/ext/pybind11/.github/CONTRIBUTING.md +349 -0
- slughorn-0.0.2/ext/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +61 -0
- slughorn-0.0.2/ext/pybind11/.github/ISSUE_TEMPLATE/config.yml +8 -0
- slughorn-0.0.2/ext/pybind11/.github/dependabot.yml +11 -0
- slughorn-0.0.2/ext/pybind11/.github/labeler.yml +13 -0
- slughorn-0.0.2/ext/pybind11/.github/labeler_merged.yml +8 -0
- slughorn-0.0.2/ext/pybind11/.github/matchers/pylint.json +32 -0
- slughorn-0.0.2/ext/pybind11/.github/pull_request_template.md +15 -0
- slughorn-0.0.2/ext/pybind11/.github/workflows/ci.yml +1369 -0
- slughorn-0.0.2/ext/pybind11/.github/workflows/configure.yml +85 -0
- slughorn-0.0.2/ext/pybind11/.github/workflows/docs-link.yml +41 -0
- slughorn-0.0.2/ext/pybind11/.github/workflows/format.yml +54 -0
- slughorn-0.0.2/ext/pybind11/.github/workflows/labeler.yml +25 -0
- slughorn-0.0.2/ext/pybind11/.github/workflows/nightlies.yml +59 -0
- slughorn-0.0.2/ext/pybind11/.github/workflows/pip.yml +118 -0
- slughorn-0.0.2/ext/pybind11/.github/workflows/reusable-standard.yml +98 -0
- slughorn-0.0.2/ext/pybind11/.github/workflows/tests-cibw.yml +77 -0
- slughorn-0.0.2/ext/pybind11/.github/workflows/upstream.yml +118 -0
- slughorn-0.0.2/ext/pybind11/.gitignore +54 -0
- slughorn-0.0.2/ext/pybind11/.pre-commit-config.yaml +158 -0
- slughorn-0.0.2/ext/pybind11/.readthedocs.yml +20 -0
- slughorn-0.0.2/ext/pybind11/CMakeLists.txt +425 -0
- slughorn-0.0.2/ext/pybind11/CMakePresets.json +93 -0
- slughorn-0.0.2/ext/pybind11/LICENSE +29 -0
- slughorn-0.0.2/ext/pybind11/README.rst +215 -0
- slughorn-0.0.2/ext/pybind11/SECURITY.md +13 -0
- slughorn-0.0.2/ext/pybind11/docs/Doxyfile +21 -0
- slughorn-0.0.2/ext/pybind11/docs/_static/css/custom.css +3 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/cast/chrono.rst +81 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/cast/custom.rst +137 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/cast/eigen.rst +310 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/cast/functional.rst +109 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/cast/index.rst +43 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/cast/overview.rst +170 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/cast/stl.rst +249 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/cast/strings.rst +296 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/classes.rst +1432 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/deadlock.md +391 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/deprecated.rst +179 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/embedding.rst +499 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/exceptions.rst +422 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/functions.rst +616 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/misc.rst +615 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/pycpp/index.rst +13 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/pycpp/numpy.rst +493 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/pycpp/object.rst +286 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/pycpp/utilities.rst +155 -0
- slughorn-0.0.2/ext/pybind11/docs/advanced/smart_ptrs.rst +179 -0
- slughorn-0.0.2/ext/pybind11/docs/basics.rst +316 -0
- slughorn-0.0.2/ext/pybind11/docs/benchmark.py +89 -0
- slughorn-0.0.2/ext/pybind11/docs/benchmark.rst +95 -0
- slughorn-0.0.2/ext/pybind11/docs/changelog.md +3460 -0
- slughorn-0.0.2/ext/pybind11/docs/classes.rst +652 -0
- slughorn-0.0.2/ext/pybind11/docs/cmake/index.rst +8 -0
- slughorn-0.0.2/ext/pybind11/docs/compiling.rst +731 -0
- slughorn-0.0.2/ext/pybind11/docs/conf.py +369 -0
- slughorn-0.0.2/ext/pybind11/docs/faq.rst +351 -0
- slughorn-0.0.2/ext/pybind11/docs/index.rst +49 -0
- slughorn-0.0.2/ext/pybind11/docs/installing.rst +105 -0
- slughorn-0.0.2/ext/pybind11/docs/limitations.rst +68 -0
- slughorn-0.0.2/ext/pybind11/docs/pybind11-logo.png +0 -0
- slughorn-0.0.2/ext/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
- slughorn-0.0.2/ext/pybind11/docs/pybind11_vs_boost_python1.svg +427 -0
- slughorn-0.0.2/ext/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
- slughorn-0.0.2/ext/pybind11/docs/pybind11_vs_boost_python2.svg +427 -0
- slughorn-0.0.2/ext/pybind11/docs/reference.rst +130 -0
- slughorn-0.0.2/ext/pybind11/docs/release.rst +135 -0
- slughorn-0.0.2/ext/pybind11/docs/requirements.in +7 -0
- slughorn-0.0.2/ext/pybind11/docs/requirements.txt +87 -0
- slughorn-0.0.2/ext/pybind11/docs/upgrade.rst +748 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/attr.h +730 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/buffer_info.h +209 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/cast.h +2446 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/chrono.h +227 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/common.h +2 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/complex.h +93 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/conduit/README.txt +15 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/conduit/pybind11_conduit_v1.h +116 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/conduit/pybind11_platform_abi_id.h +87 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/conduit/wrap_include_python_h.h +72 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/critical_section.h +56 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/detail/argument_vector.h +417 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/detail/class.h +847 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/detail/common.h +1427 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/detail/cpp_conduit.h +75 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/detail/descr.h +226 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h +39 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/detail/exception_translation.h +71 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/detail/function_record_pyobject.h +192 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/detail/holder_caster_foreign_helpers.h +104 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/detail/init.h +548 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/detail/internals.h +1082 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/detail/native_enum_data.h +227 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/detail/pybind11_namespace_macros.h +82 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/detail/struct_smart_holder.h +398 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/detail/type_caster_base.h +1711 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/detail/typeid.h +65 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/detail/using_smart_holder.h +22 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/detail/value_and_holder.h +92 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/eigen/common.h +9 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/eigen/matrix.h +723 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/eigen/tensor.h +520 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/eigen.h +12 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/embed.h +320 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/eval.h +161 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/functional.h +147 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/gil.h +203 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/gil_safe_call_once.h +273 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/gil_simple.h +37 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/iostream.h +273 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/native_enum.h +76 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/numpy.h +2412 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/operators.h +202 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/options.h +92 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/pybind11.h +3962 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/pytypes.h +2736 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/stl/filesystem.h +114 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/stl.h +666 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/stl_bind.h +858 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/subinterpreter.h +291 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/trampoline_self_life_support.h +65 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/type_caster_pyobject_ptr.h +61 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/typing.h +295 -0
- slughorn-0.0.2/ext/pybind11/include/pybind11/warnings.h +75 -0
- slughorn-0.0.2/ext/pybind11/noxfile.py +151 -0
- slughorn-0.0.2/ext/pybind11/pybind11/__init__.py +19 -0
- slughorn-0.0.2/ext/pybind11/pybind11/__main__.py +97 -0
- slughorn-0.0.2/ext/pybind11/pybind11/_version.py +34 -0
- slughorn-0.0.2/ext/pybind11/pybind11/commands.py +39 -0
- slughorn-0.0.2/ext/pybind11/pybind11/py.typed +0 -0
- slughorn-0.0.2/ext/pybind11/pybind11/setup_helpers.py +500 -0
- slughorn-0.0.2/ext/pybind11/pyproject.toml +211 -0
- slughorn-0.0.2/ext/pybind11/tests/CMakeLists.txt +686 -0
- slughorn-0.0.2/ext/pybind11/tests/conftest.py +313 -0
- slughorn-0.0.2/ext/pybind11/tests/constructor_stats.h +330 -0
- slughorn-0.0.2/ext/pybind11/tests/cross_module_gil_utils.cpp +111 -0
- slughorn-0.0.2/ext/pybind11/tests/cross_module_interleaved_error_already_set.cpp +54 -0
- slughorn-0.0.2/ext/pybind11/tests/custom_exceptions.py +10 -0
- slughorn-0.0.2/ext/pybind11/tests/eigen_tensor_avoid_stl_array.cpp +16 -0
- slughorn-0.0.2/ext/pybind11/tests/env.py +76 -0
- slughorn-0.0.2/ext/pybind11/tests/exo_planet_c_api.cpp +76 -0
- slughorn-0.0.2/ext/pybind11/tests/exo_planet_pybind11.cpp +19 -0
- slughorn-0.0.2/ext/pybind11/tests/extra_python_package/pytest.ini +0 -0
- slughorn-0.0.2/ext/pybind11/tests/extra_python_package/test_files.py +385 -0
- slughorn-0.0.2/ext/pybind11/tests/extra_setuptools/pytest.ini +0 -0
- slughorn-0.0.2/ext/pybind11/tests/extra_setuptools/test_setuphelper.py +153 -0
- slughorn-0.0.2/ext/pybind11/tests/home_planet_very_lonely_traveler.cpp +13 -0
- slughorn-0.0.2/ext/pybind11/tests/local_bindings.h +93 -0
- slughorn-0.0.2/ext/pybind11/tests/mod_per_interpreter_gil.cpp +20 -0
- slughorn-0.0.2/ext/pybind11/tests/mod_per_interpreter_gil_with_singleton.cpp +147 -0
- slughorn-0.0.2/ext/pybind11/tests/mod_shared_interpreter_gil.cpp +17 -0
- slughorn-0.0.2/ext/pybind11/tests/object.h +205 -0
- slughorn-0.0.2/ext/pybind11/tests/pure_cpp/CMakeLists.txt +22 -0
- slughorn-0.0.2/ext/pybind11/tests/pure_cpp/smart_holder_poc.h +56 -0
- slughorn-0.0.2/ext/pybind11/tests/pure_cpp/smart_holder_poc_test.cpp +427 -0
- slughorn-0.0.2/ext/pybind11/tests/pybind11_cross_module_tests.cpp +163 -0
- slughorn-0.0.2/ext/pybind11/tests/pybind11_tests.cpp +141 -0
- slughorn-0.0.2/ext/pybind11/tests/pybind11_tests.h +119 -0
- slughorn-0.0.2/ext/pybind11/tests/pyproject.toml +40 -0
- slughorn-0.0.2/ext/pybind11/tests/pytest.ini +22 -0
- slughorn-0.0.2/ext/pybind11/tests/requirements.txt +20 -0
- slughorn-0.0.2/ext/pybind11/tests/standalone_enum_module.cpp +13 -0
- slughorn-0.0.2/ext/pybind11/tests/test_async.cpp +25 -0
- slughorn-0.0.2/ext/pybind11/tests/test_async.py +31 -0
- slughorn-0.0.2/ext/pybind11/tests/test_buffers.cpp +571 -0
- slughorn-0.0.2/ext/pybind11/tests/test_buffers.py +471 -0
- slughorn-0.0.2/ext/pybind11/tests/test_builtin_casters.cpp +393 -0
- slughorn-0.0.2/ext/pybind11/tests/test_builtin_casters.py +624 -0
- slughorn-0.0.2/ext/pybind11/tests/test_call_policies.cpp +113 -0
- slughorn-0.0.2/ext/pybind11/tests/test_call_policies.py +256 -0
- slughorn-0.0.2/ext/pybind11/tests/test_callbacks.cpp +302 -0
- slughorn-0.0.2/ext/pybind11/tests/test_callbacks.py +248 -0
- slughorn-0.0.2/ext/pybind11/tests/test_chrono.cpp +81 -0
- slughorn-0.0.2/ext/pybind11/tests/test_chrono.py +207 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class.cpp +694 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class.py +557 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_cross_module_use_after_one_module_dealloc.cpp +23 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_cross_module_use_after_one_module_dealloc.py +43 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_release_gil_before_calling_cpp_dtor.cpp +54 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_release_gil_before_calling_cpp_dtor.py +21 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_basic.cpp +248 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_basic.py +248 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_disowning.cpp +41 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_disowning.py +78 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_disowning_mi.cpp +85 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_disowning_mi.py +246 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_factory_constructors.cpp +156 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_factory_constructors.py +53 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_inheritance.cpp +90 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_inheritance.py +63 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_mi_thunks.cpp +230 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_mi_thunks.py +104 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_property.cpp +129 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_property.py +206 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_property_non_owning.cpp +65 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_property_non_owning.py +30 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_shared_ptr_copy_move.cpp +103 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_shared_ptr_copy_move.py +41 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_basic.cpp +57 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_basic.py +35 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_self_life_support.cpp +86 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_self_life_support.py +38 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_shared_from_this.cpp +137 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_shared_from_this.py +247 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_shared_ptr_cpp_arg.cpp +92 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_shared_ptr_cpp_arg.py +154 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_unique_ptr.cpp +63 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_unique_ptr.py +31 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_unique_ptr_custom_deleter.cpp +30 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_unique_ptr_custom_deleter.py +8 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_unique_ptr_member.cpp +50 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_unique_ptr_member.py +26 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_virtual_py_cpp_mix.cpp +58 -0
- slughorn-0.0.2/ext/pybind11/tests/test_class_sh_virtual_py_cpp_mix.py +66 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/CMakeLists.txt +91 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/embed.cpp +23 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +19 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +29 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +37 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/main.cpp +6 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +38 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +32 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +38 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/test.py +10 -0
- slughorn-0.0.2/ext/pybind11/tests/test_const_name.cpp +55 -0
- slughorn-0.0.2/ext/pybind11/tests/test_const_name.py +31 -0
- slughorn-0.0.2/ext/pybind11/tests/test_constants_and_functions.cpp +158 -0
- slughorn-0.0.2/ext/pybind11/tests/test_constants_and_functions.py +58 -0
- slughorn-0.0.2/ext/pybind11/tests/test_copy_move.cpp +546 -0
- slughorn-0.0.2/ext/pybind11/tests/test_copy_move.py +144 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cpp_conduit.cpp +22 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cpp_conduit.py +183 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cpp_conduit_traveler_bindings.h +47 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cpp_conduit_traveler_types.h +25 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cross_module_rtti/CMakeLists.txt +70 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cross_module_rtti/bindings.cpp +20 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cross_module_rtti/catch.cpp +22 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cross_module_rtti/lib.cpp +13 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cross_module_rtti/lib.h +31 -0
- slughorn-0.0.2/ext/pybind11/tests/test_cross_module_rtti/test_cross_module_rtti.cpp +50 -0
- slughorn-0.0.2/ext/pybind11/tests/test_custom_type_casters.cpp +217 -0
- slughorn-0.0.2/ext/pybind11/tests/test_custom_type_casters.py +126 -0
- slughorn-0.0.2/ext/pybind11/tests/test_custom_type_setup.cpp +104 -0
- slughorn-0.0.2/ext/pybind11/tests/test_custom_type_setup.py +79 -0
- slughorn-0.0.2/ext/pybind11/tests/test_docs_advanced_cast_custom.cpp +69 -0
- slughorn-0.0.2/ext/pybind11/tests/test_docs_advanced_cast_custom.py +40 -0
- slughorn-0.0.2/ext/pybind11/tests/test_docstring_options.cpp +129 -0
- slughorn-0.0.2/ext/pybind11/tests/test_docstring_options.py +72 -0
- slughorn-0.0.2/ext/pybind11/tests/test_eigen_matrix.cpp +448 -0
- slughorn-0.0.2/ext/pybind11/tests/test_eigen_matrix.py +839 -0
- slughorn-0.0.2/ext/pybind11/tests/test_eigen_tensor.cpp +18 -0
- slughorn-0.0.2/ext/pybind11/tests/test_eigen_tensor.inl +338 -0
- slughorn-0.0.2/ext/pybind11/tests/test_eigen_tensor.py +316 -0
- slughorn-0.0.2/ext/pybind11/tests/test_enum.cpp +149 -0
- slughorn-0.0.2/ext/pybind11/tests/test_enum.py +344 -0
- slughorn-0.0.2/ext/pybind11/tests/test_eval.cpp +118 -0
- slughorn-0.0.2/ext/pybind11/tests/test_eval.py +52 -0
- slughorn-0.0.2/ext/pybind11/tests/test_eval_call.py +5 -0
- slughorn-0.0.2/ext/pybind11/tests/test_exceptions.cpp +427 -0
- slughorn-0.0.2/ext/pybind11/tests/test_exceptions.h +13 -0
- slughorn-0.0.2/ext/pybind11/tests/test_exceptions.py +439 -0
- slughorn-0.0.2/ext/pybind11/tests/test_factory_constructors.cpp +434 -0
- slughorn-0.0.2/ext/pybind11/tests/test_factory_constructors.py +531 -0
- slughorn-0.0.2/ext/pybind11/tests/test_gil_scoped.cpp +144 -0
- slughorn-0.0.2/ext/pybind11/tests/test_gil_scoped.py +294 -0
- slughorn-0.0.2/ext/pybind11/tests/test_iostream.cpp +126 -0
- slughorn-0.0.2/ext/pybind11/tests/test_iostream.py +304 -0
- slughorn-0.0.2/ext/pybind11/tests/test_kwargs_and_defaults.cpp +331 -0
- slughorn-0.0.2/ext/pybind11/tests/test_kwargs_and_defaults.py +473 -0
- slughorn-0.0.2/ext/pybind11/tests/test_local_bindings.cpp +131 -0
- slughorn-0.0.2/ext/pybind11/tests/test_local_bindings.py +291 -0
- slughorn-0.0.2/ext/pybind11/tests/test_methods_and_attributes.cpp +788 -0
- slughorn-0.0.2/ext/pybind11/tests/test_methods_and_attributes.py +715 -0
- slughorn-0.0.2/ext/pybind11/tests/test_modules.cpp +124 -0
- slughorn-0.0.2/ext/pybind11/tests/test_modules.py +146 -0
- slughorn-0.0.2/ext/pybind11/tests/test_multiple_inheritance.cpp +341 -0
- slughorn-0.0.2/ext/pybind11/tests/test_multiple_inheritance.py +500 -0
- slughorn-0.0.2/ext/pybind11/tests/test_multiple_interpreters.py +437 -0
- slughorn-0.0.2/ext/pybind11/tests/test_native_enum.cpp +262 -0
- slughorn-0.0.2/ext/pybind11/tests/test_native_enum.py +377 -0
- slughorn-0.0.2/ext/pybind11/tests/test_numpy_array.cpp +616 -0
- slughorn-0.0.2/ext/pybind11/tests/test_numpy_array.py +749 -0
- slughorn-0.0.2/ext/pybind11/tests/test_numpy_dtypes.cpp +745 -0
- slughorn-0.0.2/ext/pybind11/tests/test_numpy_dtypes.py +464 -0
- slughorn-0.0.2/ext/pybind11/tests/test_numpy_scalars.cpp +63 -0
- slughorn-0.0.2/ext/pybind11/tests/test_numpy_scalars.py +54 -0
- slughorn-0.0.2/ext/pybind11/tests/test_numpy_vectorize.cpp +137 -0
- slughorn-0.0.2/ext/pybind11/tests/test_numpy_vectorize.py +319 -0
- slughorn-0.0.2/ext/pybind11/tests/test_opaque_types.cpp +77 -0
- slughorn-0.0.2/ext/pybind11/tests/test_opaque_types.py +64 -0
- slughorn-0.0.2/ext/pybind11/tests/test_operator_overloading.cpp +281 -0
- slughorn-0.0.2/ext/pybind11/tests/test_operator_overloading.py +161 -0
- slughorn-0.0.2/ext/pybind11/tests/test_pickling.cpp +191 -0
- slughorn-0.0.2/ext/pybind11/tests/test_pickling.py +149 -0
- slughorn-0.0.2/ext/pybind11/tests/test_potentially_slicing_weak_ptr.cpp +170 -0
- slughorn-0.0.2/ext/pybind11/tests/test_potentially_slicing_weak_ptr.py +174 -0
- slughorn-0.0.2/ext/pybind11/tests/test_python_multiple_inheritance.cpp +45 -0
- slughorn-0.0.2/ext/pybind11/tests/test_python_multiple_inheritance.py +36 -0
- slughorn-0.0.2/ext/pybind11/tests/test_pytypes.cpp +1215 -0
- slughorn-0.0.2/ext/pybind11/tests/test_pytypes.py +1374 -0
- slughorn-0.0.2/ext/pybind11/tests/test_scoped_critical_section.cpp +274 -0
- slughorn-0.0.2/ext/pybind11/tests/test_scoped_critical_section.py +30 -0
- slughorn-0.0.2/ext/pybind11/tests/test_sequences_and_iterators.cpp +600 -0
- slughorn-0.0.2/ext/pybind11/tests/test_sequences_and_iterators.py +307 -0
- slughorn-0.0.2/ext/pybind11/tests/test_smart_ptr.cpp +627 -0
- slughorn-0.0.2/ext/pybind11/tests/test_smart_ptr.py +370 -0
- slughorn-0.0.2/ext/pybind11/tests/test_standalone_enum_module.py +18 -0
- slughorn-0.0.2/ext/pybind11/tests/test_stl.cpp +667 -0
- slughorn-0.0.2/ext/pybind11/tests/test_stl.py +735 -0
- slughorn-0.0.2/ext/pybind11/tests/test_stl_binders.cpp +275 -0
- slughorn-0.0.2/ext/pybind11/tests/test_stl_binders.py +414 -0
- slughorn-0.0.2/ext/pybind11/tests/test_tagbased_polymorphic.cpp +150 -0
- slughorn-0.0.2/ext/pybind11/tests/test_tagbased_polymorphic.py +30 -0
- slughorn-0.0.2/ext/pybind11/tests/test_thread.cpp +108 -0
- slughorn-0.0.2/ext/pybind11/tests/test_thread.py +80 -0
- slughorn-0.0.2/ext/pybind11/tests/test_type_caster_pyobject_ptr.cpp +168 -0
- slughorn-0.0.2/ext/pybind11/tests/test_type_caster_pyobject_ptr.py +125 -0
- slughorn-0.0.2/ext/pybind11/tests/test_type_caster_std_function_specializations.cpp +46 -0
- slughorn-0.0.2/ext/pybind11/tests/test_type_caster_std_function_specializations.py +15 -0
- slughorn-0.0.2/ext/pybind11/tests/test_union.cpp +22 -0
- slughorn-0.0.2/ext/pybind11/tests/test_union.py +10 -0
- slughorn-0.0.2/ext/pybind11/tests/test_unnamed_namespace_a.cpp +37 -0
- slughorn-0.0.2/ext/pybind11/tests/test_unnamed_namespace_a.py +33 -0
- slughorn-0.0.2/ext/pybind11/tests/test_unnamed_namespace_b.cpp +13 -0
- slughorn-0.0.2/ext/pybind11/tests/test_unnamed_namespace_b.py +7 -0
- slughorn-0.0.2/ext/pybind11/tests/test_vector_unique_ptr_member.cpp +54 -0
- slughorn-0.0.2/ext/pybind11/tests/test_vector_unique_ptr_member.py +16 -0
- slughorn-0.0.2/ext/pybind11/tests/test_virtual_functions.cpp +591 -0
- slughorn-0.0.2/ext/pybind11/tests/test_virtual_functions.py +468 -0
- slughorn-0.0.2/ext/pybind11/tests/test_warnings.cpp +46 -0
- slughorn-0.0.2/ext/pybind11/tests/test_warnings.py +68 -0
- slughorn-0.0.2/ext/pybind11/tests/test_with_catch/CMakeLists.txt +64 -0
- slughorn-0.0.2/ext/pybind11/tests/test_with_catch/catch.cpp +175 -0
- slughorn-0.0.2/ext/pybind11/tests/test_with_catch/catch_skip.h +21 -0
- slughorn-0.0.2/ext/pybind11/tests/test_with_catch/external_module.cpp +39 -0
- slughorn-0.0.2/ext/pybind11/tests/test_with_catch/test_args_convert_vector.cpp +80 -0
- slughorn-0.0.2/ext/pybind11/tests/test_with_catch/test_argument_vector.cpp +94 -0
- slughorn-0.0.2/ext/pybind11/tests/test_with_catch/test_interpreter.cpp +511 -0
- slughorn-0.0.2/ext/pybind11/tests/test_with_catch/test_interpreter.py +16 -0
- slughorn-0.0.2/ext/pybind11/tests/test_with_catch/test_subinterpreter.cpp +579 -0
- slughorn-0.0.2/ext/pybind11/tests/test_with_catch/test_trampoline.py +18 -0
- slughorn-0.0.2/ext/pybind11/tests/valgrind-numpy-scipy.supp +140 -0
- slughorn-0.0.2/ext/pybind11/tests/valgrind-python.supp +117 -0
- slughorn-0.0.2/ext/pybind11/tools/FindCatch.cmake +74 -0
- slughorn-0.0.2/ext/pybind11/tools/FindEigen3.cmake +86 -0
- slughorn-0.0.2/ext/pybind11/tools/FindPythonLibsNew.cmake +320 -0
- slughorn-0.0.2/ext/pybind11/tools/JoinPaths.cmake +23 -0
- slughorn-0.0.2/ext/pybind11/tools/check-style.sh +44 -0
- slughorn-0.0.2/ext/pybind11/tools/cmake_uninstall.cmake.in +23 -0
- slughorn-0.0.2/ext/pybind11/tools/codespell_ignore_lines_from_errors.py +40 -0
- slughorn-0.0.2/ext/pybind11/tools/libsize.py +38 -0
- slughorn-0.0.2/ext/pybind11/tools/make_changelog.py +121 -0
- slughorn-0.0.2/ext/pybind11/tools/make_global.py +33 -0
- slughorn-0.0.2/ext/pybind11/tools/pybind11.pc.in +7 -0
- slughorn-0.0.2/ext/pybind11/tools/pybind11Common.cmake +458 -0
- slughorn-0.0.2/ext/pybind11/tools/pybind11Config.cmake.in +240 -0
- slughorn-0.0.2/ext/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +94 -0
- slughorn-0.0.2/ext/pybind11/tools/pybind11NewTools.cmake +339 -0
- slughorn-0.0.2/ext/pybind11/tools/pybind11Tools.cmake +217 -0
- slughorn-0.0.2/ext/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +185 -0
- slughorn-0.0.2/ext/python/slughorn-canvas.cpp +788 -0
- slughorn-0.0.2/ext/python/slughorn-core.cpp +1355 -0
- slughorn-0.0.2/ext/python/slughorn-emoji.cpp +61 -0
- slughorn-0.0.2/ext/python/slughorn-freetype.cpp +131 -0
- slughorn-0.0.2/ext/python/slughorn-nanosvg.cpp +122 -0
- slughorn-0.0.2/ext/python/slughorn-python.hpp +256 -0
- slughorn-0.0.2/ext/python/slughorn-render.cpp +214 -0
- slughorn-0.0.2/ext/python/slughorn-tessellate.cpp +57 -0
- slughorn-0.0.2/ext/python/slughorn.cpp +124 -0
- slughorn-0.0.2/ext/skia-args.gn +52 -0
- slughorn-0.0.2/pyproject.toml +43 -0
- slughorn-0.0.2/pytest.ini +5 -0
- slughorn-0.0.2/slughorn/blend2d.hpp +310 -0
- slughorn-0.0.2/slughorn/cairo.hpp +221 -0
- slughorn-0.0.2/slughorn/canvas.hpp +2506 -0
- slughorn-0.0.2/slughorn/emoji.hpp +1188 -0
- slughorn-0.0.2/slughorn/freetype.hpp +1523 -0
- slughorn-0.0.2/slughorn/nanosvg.hpp +730 -0
- slughorn-0.0.2/slughorn/render.hpp +809 -0
- slughorn-0.0.2/slughorn/serial.hpp +943 -0
- slughorn-0.0.2/slughorn/skia.hpp +365 -0
- slughorn-0.0.2/slughorn/slughorn.cpp +1681 -0
- slughorn-0.0.2/slughorn/slughorn.hpp +2352 -0
- slughorn-0.0.2/slughorn/tessellate.hpp +313 -0
- slughorn-0.0.2/test/benchmark/Makefile +26 -0
- slughorn-0.0.2/test/benchmark/slughorn-benchmark-cairo.cpp +97 -0
- slughorn-0.0.2/test/benchmark/slughorn-benchmark-python.py +134 -0
- slughorn-0.0.2/test/benchmark/slughorn-benchmark-skia.cpp +209 -0
- slughorn-0.0.2/test/python/conftest.py +86 -0
- slughorn-0.0.2/test/python/test_canvas.py +727 -0
- slughorn-0.0.2/test/python/test_emoji.py +62 -0
- slughorn-0.0.2/test/python/test_freetype.py +326 -0
- slughorn-0.0.2/test/python/test_nanosvg.py +481 -0
- slughorn-0.0.2/test/python/test_render.py +529 -0
- slughorn-0.0.2/test/python/test_serial.py +373 -0
- slughorn-0.0.2/test/python/test_slughorn.py +933 -0
- slughorn-0.0.2/test/python/test_tessellate.py +194 -0
- slughorn-0.0.2/test/slughorn-test-bands.cpp +475 -0
- slughorn-0.0.2/test/slughorn-test-blend2d.cpp +108 -0
- slughorn-0.0.2/test/slughorn-test-cairo.cpp +167 -0
- slughorn-0.0.2/test/slughorn-test-canvas.cpp +953 -0
- slughorn-0.0.2/test/slughorn-test-emoji.html +649 -0
- slughorn-0.0.2/test/slughorn-test-nanosvg.cpp +508 -0
- slughorn-0.0.2/test/slughorn-test-render.cpp +284 -0
- slughorn-0.0.2/test/slughorn-test-scanlinesweep.cpp +204 -0
- slughorn-0.0.2/test/slughorn-test-tessellate.cpp +149 -0
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Unified-diff files applied verbatim via `git apply` (see CMakeLists.txt's SLUGHORN_NANOSVG
|
|
2
|
+
# patch step). Without this, Windows checkouts (core.autocrlf=true, the GitHub Actions
|
|
3
|
+
# windows-latest default) convert these to CRLF, corrupting the diff format and making
|
|
4
|
+
# `git apply` reject them as "corrupt patch" -- confirmed 2026-09-01 in wheels.yml CI.
|
|
5
|
+
*.diff text eol=lf
|
|
@@ -0,0 +1,303 @@
|
|
|
1
|
+
name: Build wheels
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
# Release tags build the same wheels, then unlock the publish job below.
|
|
7
|
+
tags: ["v*"]
|
|
8
|
+
workflow_dispatch:
|
|
9
|
+
inputs:
|
|
10
|
+
build:
|
|
11
|
+
description: Build release artifacts
|
|
12
|
+
required: true
|
|
13
|
+
default: false
|
|
14
|
+
type: boolean
|
|
15
|
+
target:
|
|
16
|
+
description: Artifact set to build
|
|
17
|
+
required: true
|
|
18
|
+
default: all
|
|
19
|
+
type: choice
|
|
20
|
+
options:
|
|
21
|
+
- all
|
|
22
|
+
- linux-x86_64
|
|
23
|
+
- linux-aarch64
|
|
24
|
+
- windows-x86_64
|
|
25
|
+
- sdist
|
|
26
|
+
|
|
27
|
+
# The workflow only needs to read the repository and upload its wheel artifact.
|
|
28
|
+
permissions:
|
|
29
|
+
contents: read
|
|
30
|
+
|
|
31
|
+
jobs:
|
|
32
|
+
linux-x86_64:
|
|
33
|
+
name: Linux x86-64 / CPython 3.12-3.14 / manylinux_2_28
|
|
34
|
+
# Pushes remain visible in Actions but do not consume build capacity.
|
|
35
|
+
# Run manually with: gh workflow run wheels.yml -f build=true
|
|
36
|
+
if: inputs.build && (inputs.target == 'all' || inputs.target == 'linux-x86_64')
|
|
37
|
+
runs-on: ubuntu-24.04
|
|
38
|
+
|
|
39
|
+
steps:
|
|
40
|
+
- uses: actions/checkout@v6
|
|
41
|
+
with:
|
|
42
|
+
# pybind11/nanosvg/json/earcut are all vendored submodules the build needs.
|
|
43
|
+
submodules: recursive
|
|
44
|
+
persist-credentials: false
|
|
45
|
+
|
|
46
|
+
- name: Set up cibuildwheel host Python
|
|
47
|
+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
48
|
+
with:
|
|
49
|
+
python-version: "3.11 - 3.14"
|
|
50
|
+
|
|
51
|
+
- name: Build and test repaired wheel
|
|
52
|
+
uses: pypa/cibuildwheel@v3.4.1
|
|
53
|
+
with:
|
|
54
|
+
output-dir: ${{ github.workspace }}/wheelhouse
|
|
55
|
+
env:
|
|
56
|
+
CIBW_BUILD: cp312-manylinux_x86_64 cp313-manylinux_x86_64 cp314-manylinux_x86_64
|
|
57
|
+
CIBW_ARCHS_LINUX: x86_64
|
|
58
|
+
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
|
|
59
|
+
# manylinux_2_28's freetype-devel (2.9.1) predates FT_COLOR_H/COLR emoji support that
|
|
60
|
+
# slughorn/freetype.hpp needs, so build a modern FreeType from source instead of
|
|
61
|
+
# `dnf install freetype-devel`. PIC is required -- without it, the static libfreetype.a
|
|
62
|
+
# fails to link into slughorn.cpython-*.so ("relocation ... can not be used when making
|
|
63
|
+
# a shared object"). Optional deps disabled since slughorn doesn't need them and it
|
|
64
|
+
# keeps this self-contained. Installs to /usr/local, which CMake's find_package()
|
|
65
|
+
# already searches by default. git is separately required at CMake-configure time to
|
|
66
|
+
# apply slughorn's nanosvg upstream-fix patches (see CMakeLists.txt SLUGHORN_NANOSVG).
|
|
67
|
+
# cmake itself is already on PATH in this image (manylinux_2_28 ships a pipx-installed
|
|
68
|
+
# one; scikit-build-core's own log already confirms "using CMake 4.2.3").
|
|
69
|
+
CIBW_BEFORE_ALL: >-
|
|
70
|
+
dnf install -y git &&
|
|
71
|
+
git clone --depth 1 --branch VER-2-14-3 https://github.com/freetype/freetype.git /tmp/freetype-src &&
|
|
72
|
+
cmake -S /tmp/freetype-src -B /tmp/freetype-build
|
|
73
|
+
-DCMAKE_BUILD_TYPE=Release
|
|
74
|
+
-DCMAKE_POSITION_INDEPENDENT_CODE=ON
|
|
75
|
+
-DFT_DISABLE_ZLIB=ON
|
|
76
|
+
-DFT_DISABLE_BZIP2=ON
|
|
77
|
+
-DFT_DISABLE_PNG=ON
|
|
78
|
+
-DFT_DISABLE_HARFBUZZ=ON
|
|
79
|
+
-DFT_DISABLE_BROTLI=ON
|
|
80
|
+
-DBUILD_SHARED_LIBS=OFF &&
|
|
81
|
+
cmake --build /tmp/freetype-build -j$(nproc) &&
|
|
82
|
+
cmake --install /tmp/freetype-build --prefix /usr/local
|
|
83
|
+
CIBW_REPAIR_WHEEL_COMMAND: auditwheel repair -w {dest_dir} {wheel}
|
|
84
|
+
# cibuildwheel installs the repaired wheel into an isolated test environment first.
|
|
85
|
+
CIBW_TEST_COMMAND: >-
|
|
86
|
+
python -c "import slughorn;
|
|
87
|
+
from slughorn import Key, Atlas;
|
|
88
|
+
assert hasattr(slughorn, 'freetype'), 'freetype submodule missing';
|
|
89
|
+
assert hasattr(slughorn, 'nanosvg'), 'nanosvg submodule missing';
|
|
90
|
+
assert hasattr(slughorn, 'tessellate'), 'tessellate submodule missing';
|
|
91
|
+
assert hasattr(slughorn, 'canvas'), 'canvas submodule missing';
|
|
92
|
+
assert hasattr(slughorn, 'render'), 'render submodule missing';
|
|
93
|
+
assert hasattr(slughorn, 'emoji'), 'emoji submodule missing'"
|
|
94
|
+
|
|
95
|
+
- name: Inspect repaired wheel dependencies
|
|
96
|
+
run: |
|
|
97
|
+
wheel="$(find "${{ github.workspace }}/wheelhouse" -maxdepth 1 -name '*.whl' -print -quit)"
|
|
98
|
+
test -n "$wheel"
|
|
99
|
+
docker run --rm \
|
|
100
|
+
--volume "${{ github.workspace }}/wheelhouse:/wheelhouse:ro" \
|
|
101
|
+
quay.io/pypa/manylinux_2_28_x86_64 \
|
|
102
|
+
auditwheel show "/wheelhouse/$(basename "$wheel")"
|
|
103
|
+
|
|
104
|
+
- name: Upload repaired wheel
|
|
105
|
+
uses: actions/upload-artifact@v4
|
|
106
|
+
with:
|
|
107
|
+
name: slughorn-manylinux_2_28-x86_64
|
|
108
|
+
path: wheelhouse/*.whl
|
|
109
|
+
if-no-files-found: error
|
|
110
|
+
|
|
111
|
+
linux-aarch64:
|
|
112
|
+
name: Linux ARM64 / CPython 3.12-3.14 / manylinux_2_28
|
|
113
|
+
if: inputs.build && (inputs.target == 'all' || inputs.target == 'linux-aarch64')
|
|
114
|
+
runs-on: ubuntu-24.04-arm
|
|
115
|
+
|
|
116
|
+
steps:
|
|
117
|
+
- uses: actions/checkout@v6
|
|
118
|
+
with:
|
|
119
|
+
submodules: recursive
|
|
120
|
+
persist-credentials: false
|
|
121
|
+
|
|
122
|
+
- name: Set up cibuildwheel host Python
|
|
123
|
+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
124
|
+
with:
|
|
125
|
+
python-version: "3.11 - 3.14"
|
|
126
|
+
|
|
127
|
+
- name: Build and test repaired wheel
|
|
128
|
+
uses: pypa/cibuildwheel@v3.4.1
|
|
129
|
+
with:
|
|
130
|
+
output-dir: ${{ github.workspace }}/wheelhouse
|
|
131
|
+
env:
|
|
132
|
+
CIBW_BUILD: cp312-manylinux_aarch64 cp313-manylinux_aarch64 cp314-manylinux_aarch64
|
|
133
|
+
CIBW_ARCHS_LINUX: aarch64
|
|
134
|
+
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28
|
|
135
|
+
# See linux-x86_64's CIBW_BEFORE_ALL above for why this builds FreeType from source
|
|
136
|
+
# instead of `dnf install freetype-devel` (manylinux's 2.9.1 predates FT_COLOR_H).
|
|
137
|
+
CIBW_BEFORE_ALL: >-
|
|
138
|
+
dnf install -y git &&
|
|
139
|
+
git clone --depth 1 --branch VER-2-14-3 https://github.com/freetype/freetype.git /tmp/freetype-src &&
|
|
140
|
+
cmake -S /tmp/freetype-src -B /tmp/freetype-build
|
|
141
|
+
-DCMAKE_BUILD_TYPE=Release
|
|
142
|
+
-DCMAKE_POSITION_INDEPENDENT_CODE=ON
|
|
143
|
+
-DFT_DISABLE_ZLIB=ON
|
|
144
|
+
-DFT_DISABLE_BZIP2=ON
|
|
145
|
+
-DFT_DISABLE_PNG=ON
|
|
146
|
+
-DFT_DISABLE_HARFBUZZ=ON
|
|
147
|
+
-DFT_DISABLE_BROTLI=ON
|
|
148
|
+
-DBUILD_SHARED_LIBS=OFF &&
|
|
149
|
+
cmake --build /tmp/freetype-build -j$(nproc) &&
|
|
150
|
+
cmake --install /tmp/freetype-build --prefix /usr/local
|
|
151
|
+
CIBW_REPAIR_WHEEL_COMMAND: auditwheel repair -w {dest_dir} {wheel}
|
|
152
|
+
CIBW_TEST_COMMAND: >-
|
|
153
|
+
python -c "import slughorn;
|
|
154
|
+
from slughorn import Key, Atlas;
|
|
155
|
+
assert hasattr(slughorn, 'freetype'), 'freetype submodule missing';
|
|
156
|
+
assert hasattr(slughorn, 'nanosvg'), 'nanosvg submodule missing';
|
|
157
|
+
assert hasattr(slughorn, 'tessellate'), 'tessellate submodule missing';
|
|
158
|
+
assert hasattr(slughorn, 'canvas'), 'canvas submodule missing';
|
|
159
|
+
assert hasattr(slughorn, 'render'), 'render submodule missing';
|
|
160
|
+
assert hasattr(slughorn, 'emoji'), 'emoji submodule missing'"
|
|
161
|
+
|
|
162
|
+
- name: Inspect repaired wheel dependencies
|
|
163
|
+
run: |
|
|
164
|
+
wheel="$(find "${{ github.workspace }}/wheelhouse" -maxdepth 1 -name '*.whl' -print -quit)"
|
|
165
|
+
test -n "$wheel"
|
|
166
|
+
docker run --rm \
|
|
167
|
+
--volume "${{ github.workspace }}/wheelhouse:/wheelhouse:ro" \
|
|
168
|
+
quay.io/pypa/manylinux_2_28_aarch64 \
|
|
169
|
+
auditwheel show "/wheelhouse/$(basename "$wheel")"
|
|
170
|
+
|
|
171
|
+
- name: Upload repaired wheel
|
|
172
|
+
uses: actions/upload-artifact@v4
|
|
173
|
+
with:
|
|
174
|
+
name: slughorn-manylinux_2_28-aarch64
|
|
175
|
+
path: wheelhouse/*.whl
|
|
176
|
+
if-no-files-found: error
|
|
177
|
+
|
|
178
|
+
windows-x86_64:
|
|
179
|
+
name: Windows x86-64 / CPython 3.12-3.14
|
|
180
|
+
# Re-enabled 2026-09-01 after MSVC-on-Wine validated slughorn's own build (vcpkg's freetype
|
|
181
|
+
# port is already 2.14.3, so no FreeType-from-source workaround needed here unlike Linux).
|
|
182
|
+
if: inputs.build && (inputs.target == 'all' || inputs.target == 'windows-x86_64')
|
|
183
|
+
runs-on: windows-latest
|
|
184
|
+
|
|
185
|
+
steps:
|
|
186
|
+
- uses: actions/checkout@v6
|
|
187
|
+
with:
|
|
188
|
+
submodules: recursive
|
|
189
|
+
persist-credentials: false
|
|
190
|
+
|
|
191
|
+
- name: Set up cibuildwheel host Python
|
|
192
|
+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
193
|
+
with:
|
|
194
|
+
python-version: "3.12"
|
|
195
|
+
|
|
196
|
+
# vcpkg supplies FreeType for Windows; everything else needed (pybind11, nanosvg, json,
|
|
197
|
+
# earcut) is a vendored git submodule already on disk from the checkout above.
|
|
198
|
+
- name: Set up vcpkg dependencies
|
|
199
|
+
shell: pwsh
|
|
200
|
+
run: |
|
|
201
|
+
git clone --depth 1 https://github.com/microsoft/vcpkg.git C:\vcpkg
|
|
202
|
+
& C:\vcpkg\bootstrap-vcpkg.bat
|
|
203
|
+
& C:\vcpkg\vcpkg.exe install --triplet x64-windows freetype
|
|
204
|
+
|
|
205
|
+
- name: Build and test Windows wheel
|
|
206
|
+
uses: pypa/cibuildwheel@v3.4.1
|
|
207
|
+
with:
|
|
208
|
+
output-dir: ${{ github.workspace }}\wheelhouse
|
|
209
|
+
env:
|
|
210
|
+
CIBW_BUILD: cp312-win_amd64 cp313-win_amd64 cp314-win_amd64
|
|
211
|
+
CIBW_ARCHS_WINDOWS: AMD64
|
|
212
|
+
CIBW_BEFORE_BUILD_WINDOWS: >-
|
|
213
|
+
python -m pip install delvewheel
|
|
214
|
+
# scikit-build-core forwards CMAKE_ARGS to the native configure; vcpkg's toolchain
|
|
215
|
+
# makes CMake's FindFreetype resolve to the library installed above.
|
|
216
|
+
# MSBUILDDISABLENODEREUSE stops MSBuild worker processes (MSBuild.exe, mspdbsrv.exe)
|
|
217
|
+
# from lingering after the build "finishes" - without it, one can still hold a file
|
|
218
|
+
# handle open in the build directory when Python's isolated-build cleanup immediately
|
|
219
|
+
# tries to delete it, racing into "PermissionError: ... being used by another process".
|
|
220
|
+
CIBW_ENVIRONMENT_WINDOWS: >-
|
|
221
|
+
CMAKE_ARGS="-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows"
|
|
222
|
+
MSBUILDDISABLENODEREUSE=1
|
|
223
|
+
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: >-
|
|
224
|
+
python -m delvewheel repair --add-path C:/vcpkg/installed/x64-windows/bin -w {dest_dir} {wheel}
|
|
225
|
+
CIBW_TEST_COMMAND: >-
|
|
226
|
+
python -c "import slughorn; from slughorn import Key, Atlas; assert hasattr(slughorn, 'freetype'); assert hasattr(slughorn, 'nanosvg'); assert hasattr(slughorn, 'tessellate'); assert hasattr(slughorn, 'canvas'); assert hasattr(slughorn, 'render'); assert hasattr(slughorn, 'emoji')"
|
|
227
|
+
|
|
228
|
+
- name: Upload Windows wheel
|
|
229
|
+
uses: actions/upload-artifact@v4
|
|
230
|
+
with:
|
|
231
|
+
name: slughorn-win-amd64
|
|
232
|
+
path: wheelhouse/*.whl
|
|
233
|
+
if-no-files-found: error
|
|
234
|
+
|
|
235
|
+
sdist:
|
|
236
|
+
name: Source distribution
|
|
237
|
+
if: inputs.build && (inputs.target == 'all' || inputs.target == 'sdist')
|
|
238
|
+
runs-on: ubuntu-24.04
|
|
239
|
+
|
|
240
|
+
steps:
|
|
241
|
+
- uses: actions/checkout@v6
|
|
242
|
+
with:
|
|
243
|
+
submodules: recursive
|
|
244
|
+
persist-credentials: false
|
|
245
|
+
|
|
246
|
+
- name: Set up Python
|
|
247
|
+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
248
|
+
with:
|
|
249
|
+
python-version: "3.12"
|
|
250
|
+
|
|
251
|
+
- name: Build sdist
|
|
252
|
+
run: |
|
|
253
|
+
python -m pip install build
|
|
254
|
+
python -m build --sdist
|
|
255
|
+
|
|
256
|
+
- name: Install build-time system libraries
|
|
257
|
+
run: |
|
|
258
|
+
sudo apt-get update
|
|
259
|
+
sudo apt-get install -y libfreetype-dev
|
|
260
|
+
|
|
261
|
+
# Confirms a clean-clone tree self-builds under a normal `pip install`, exercising the
|
|
262
|
+
# same fallback path any platform/Python combination without a prebuilt wheel above
|
|
263
|
+
# would hit on PyPI.
|
|
264
|
+
- name: Install sdist into a clean venv
|
|
265
|
+
run: |
|
|
266
|
+
python -m venv sdist-venv
|
|
267
|
+
sdist-venv/bin/pip install dist/*.tar.gz
|
|
268
|
+
|
|
269
|
+
- name: Smoke-test installed sdist build
|
|
270
|
+
run: >-
|
|
271
|
+
sdist-venv/bin/python -c "import slughorn;
|
|
272
|
+
from slughorn import Key, Atlas;
|
|
273
|
+
assert hasattr(slughorn, 'freetype'), 'freetype submodule missing';
|
|
274
|
+
assert hasattr(slughorn, 'nanosvg'), 'nanosvg submodule missing';
|
|
275
|
+
assert hasattr(slughorn, 'tessellate'), 'tessellate submodule missing'"
|
|
276
|
+
|
|
277
|
+
- name: Upload sdist
|
|
278
|
+
uses: actions/upload-artifact@v4
|
|
279
|
+
with:
|
|
280
|
+
name: slughorn-sdist
|
|
281
|
+
path: dist/*.tar.gz
|
|
282
|
+
if-no-files-found: error
|
|
283
|
+
|
|
284
|
+
publish:
|
|
285
|
+
name: Publish to PyPI
|
|
286
|
+
# Pushes to `main` (and manual test runs) produce build artifacts only.
|
|
287
|
+
# Publishing requires an explicit versioned release tag, e.g. v0.0.2.
|
|
288
|
+
if: inputs.build && inputs.target == 'all' && startsWith(github.ref, 'refs/tags/v')
|
|
289
|
+
needs: [linux-x86_64, linux-aarch64, windows-x86_64, sdist]
|
|
290
|
+
runs-on: ubuntu-24.04
|
|
291
|
+
environment:
|
|
292
|
+
name: pypi
|
|
293
|
+
url: https://pypi.org/project/slughorn/
|
|
294
|
+
permissions:
|
|
295
|
+
id-token: write
|
|
296
|
+
steps:
|
|
297
|
+
- uses: actions/download-artifact@v4
|
|
298
|
+
with:
|
|
299
|
+
pattern: slughorn-*
|
|
300
|
+
path: dist/
|
|
301
|
+
merge-multiple: true
|
|
302
|
+
|
|
303
|
+
- uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
doc/logo.pdf
|
|
2
|
+
doc/UserGuide.pdf
|
|
3
|
+
doc/WhatsNext.pdf
|
|
4
|
+
bin/__pycache__
|
|
5
|
+
test/python/__pycache__
|
|
6
|
+
test/benchmark/slughorn-benchmark-cairo
|
|
7
|
+
test/benchmark/slughorn-benchmark-skia
|
|
8
|
+
|
|
9
|
+
# Prerequisites
|
|
10
|
+
*.d
|
|
11
|
+
|
|
12
|
+
# Compiled Object files
|
|
13
|
+
*.slo
|
|
14
|
+
*.lo
|
|
15
|
+
*.o
|
|
16
|
+
*.obj
|
|
17
|
+
|
|
18
|
+
# Precompiled Headers
|
|
19
|
+
*.gch
|
|
20
|
+
*.pch
|
|
21
|
+
|
|
22
|
+
# Linker files
|
|
23
|
+
*.ilk
|
|
24
|
+
|
|
25
|
+
# Debugger Files
|
|
26
|
+
*.pdb
|
|
27
|
+
|
|
28
|
+
# Compiled Dynamic libraries
|
|
29
|
+
*.so
|
|
30
|
+
*.dylib
|
|
31
|
+
*.dll
|
|
32
|
+
|
|
33
|
+
# Fortran module files
|
|
34
|
+
*.mod
|
|
35
|
+
*.smod
|
|
36
|
+
|
|
37
|
+
# Compiled Static libraries
|
|
38
|
+
*.lai
|
|
39
|
+
*.la
|
|
40
|
+
*.a
|
|
41
|
+
*.lib
|
|
42
|
+
|
|
43
|
+
# Executables
|
|
44
|
+
*.exe
|
|
45
|
+
*.out
|
|
46
|
+
*.app
|
|
47
|
+
|
|
48
|
+
# debug information files
|
|
49
|
+
*.dwo
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[submodule "ext/pybind11"]
|
|
2
|
+
path = ext/pybind11
|
|
3
|
+
url = https://github.com/pybind/pybind11
|
|
4
|
+
[submodule "ext/nanosvg"]
|
|
5
|
+
path = ext/nanosvg
|
|
6
|
+
url = https://github.com/memononen/nanosvg
|
|
7
|
+
[submodule "ext/json"]
|
|
8
|
+
path = ext/json
|
|
9
|
+
url = https://github.com/nlohmann/json.git
|
|
10
|
+
[submodule "ext/msdfgen"]
|
|
11
|
+
path = ext/msdfgen
|
|
12
|
+
url = https://github.com/Chlumsky/msdfgen.git
|
|
13
|
+
[submodule "ext/earcut"]
|
|
14
|
+
path = ext/earcut
|
|
15
|
+
url = https://github.com/mapbox/earcut.hpp
|