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.
Files changed (1735) hide show
  1. slughorn-0.0.2/.gitattributes +5 -0
  2. slughorn-0.0.2/.github/workflows/wheels.yml +303 -0
  3. slughorn-0.0.2/.gitignore +49 -0
  4. slughorn-0.0.2/.gitmodules +15 -0
  5. slughorn-0.0.2/CMakeLists.txt +490 -0
  6. slughorn-0.0.2/LICENSE +21 -0
  7. slughorn-0.0.2/PKG-INFO +604 -0
  8. slughorn-0.0.2/README.md +595 -0
  9. slughorn-0.0.2/bin/slughorn +840 -0
  10. slughorn-0.0.2/bin/slughorn-msdf +175 -0
  11. slughorn-0.0.2/bin/slughorned +549 -0
  12. slughorn-0.0.2/example/CMakeLists.txt +88 -0
  13. slughorn-0.0.2/example/slughorn-example-glfw.cpp +1048 -0
  14. slughorn-0.0.2/ext/architecture-light.svg +215 -0
  15. slughorn-0.0.2/ext/architecture.svg +210 -0
  16. slughorn-0.0.2/ext/earcut/.clang-format +8 -0
  17. slughorn-0.0.2/ext/earcut/.github/workflows/build.yml +287 -0
  18. slughorn-0.0.2/ext/earcut/.gitignore +2 -0
  19. slughorn-0.0.2/ext/earcut/CMakeLists.txt +198 -0
  20. slughorn-0.0.2/ext/earcut/CODEOWNERS +1 -0
  21. slughorn-0.0.2/ext/earcut/LICENSE +15 -0
  22. slughorn-0.0.2/ext/earcut/README.md +147 -0
  23. slughorn-0.0.2/ext/earcut/earcut.png +0 -0
  24. slughorn-0.0.2/ext/earcut/include/mapbox/earcut.hpp +1204 -0
  25. slughorn-0.0.2/ext/earcut/test/bench.cpp +170 -0
  26. slughorn-0.0.2/ext/earcut/test/comparison/earcut.hpp +33 -0
  27. slughorn-0.0.2/ext/earcut/test/comparison/libtess2.hpp +104 -0
  28. slughorn-0.0.2/ext/earcut/test/fixtures/geometries.cpp +97 -0
  29. slughorn-0.0.2/ext/earcut/test/fixtures/geometries.hpp +62 -0
  30. slughorn-0.0.2/ext/earcut/test/fixtures/mvt_fixture.cpp +139 -0
  31. slughorn-0.0.2/ext/earcut/test/fixtures/mvt_fixture.hpp +29 -0
  32. slughorn-0.0.2/ext/earcut/test/test.cpp +361 -0
  33. slughorn-0.0.2/ext/earcut/test/viz.cpp +527 -0
  34. slughorn-0.0.2/ext/json/.cirrus.yml +17 -0
  35. slughorn-0.0.2/ext/json/.clang-tidy +85 -0
  36. slughorn-0.0.2/ext/json/.github/CODEOWNERS +6 -0
  37. slughorn-0.0.2/ext/json/.github/CODE_OF_CONDUCT.md +132 -0
  38. slughorn-0.0.2/ext/json/.github/CONTRIBUTING.md +225 -0
  39. slughorn-0.0.2/ext/json/.github/FUNDING.yml +2 -0
  40. slughorn-0.0.2/ext/json/.github/ISSUE_TEMPLATE/bug.yaml +95 -0
  41. slughorn-0.0.2/ext/json/.github/ISSUE_TEMPLATE/config.yml +5 -0
  42. slughorn-0.0.2/ext/json/.github/PULL_REQUEST_TEMPLATE.md +9 -0
  43. slughorn-0.0.2/ext/json/.github/SECURITY.md +25 -0
  44. slughorn-0.0.2/ext/json/.github/config.yml +22 -0
  45. slughorn-0.0.2/ext/json/.github/dependabot.yml +31 -0
  46. slughorn-0.0.2/ext/json/.github/external_ci/appveyor.yml +91 -0
  47. slughorn-0.0.2/ext/json/.github/labeler.yml +38 -0
  48. slughorn-0.0.2/ext/json/.github/workflows/check_amalgamation.yml +76 -0
  49. slughorn-0.0.2/ext/json/.github/workflows/cifuzz.yml +35 -0
  50. slughorn-0.0.2/ext/json/.github/workflows/codeql-analysis.yml +49 -0
  51. slughorn-0.0.2/ext/json/.github/workflows/comment_check_amalgamation.yml +81 -0
  52. slughorn-0.0.2/ext/json/.github/workflows/dependency-review.yml +27 -0
  53. slughorn-0.0.2/ext/json/.github/workflows/flawfinder.yml +46 -0
  54. slughorn-0.0.2/ext/json/.github/workflows/labeler.yml +26 -0
  55. slughorn-0.0.2/ext/json/.github/workflows/macos.yml +121 -0
  56. slughorn-0.0.2/ext/json/.github/workflows/publish_documentation.yml +46 -0
  57. slughorn-0.0.2/ext/json/.github/workflows/scorecards.yml +81 -0
  58. slughorn-0.0.2/ext/json/.github/workflows/semgrep.yml +54 -0
  59. slughorn-0.0.2/ext/json/.github/workflows/stale.yml +34 -0
  60. slughorn-0.0.2/ext/json/.github/workflows/ubuntu.yml +283 -0
  61. slughorn-0.0.2/ext/json/.github/workflows/windows.yml +124 -0
  62. slughorn-0.0.2/ext/json/.gitignore +47 -0
  63. slughorn-0.0.2/ext/json/.reuse/dep5 +36 -0
  64. slughorn-0.0.2/ext/json/.reuse/templates/json.jinja2 +11 -0
  65. slughorn-0.0.2/ext/json/.reuse/templates/json_support.jinja2 +11 -0
  66. slughorn-0.0.2/ext/json/BUILD.bazel +80 -0
  67. slughorn-0.0.2/ext/json/CITATION.cff +14 -0
  68. slughorn-0.0.2/ext/json/CMakeLists.txt +237 -0
  69. slughorn-0.0.2/ext/json/ChangeLog.md +3272 -0
  70. slughorn-0.0.2/ext/json/FILES.md +239 -0
  71. slughorn-0.0.2/ext/json/LICENSE.MIT +21 -0
  72. slughorn-0.0.2/ext/json/LICENSES/Apache-2.0.txt +73 -0
  73. slughorn-0.0.2/ext/json/LICENSES/BSD-3-Clause.txt +11 -0
  74. slughorn-0.0.2/ext/json/LICENSES/CC0-1.0.txt +121 -0
  75. slughorn-0.0.2/ext/json/LICENSES/GPL-3.0-only.txt +232 -0
  76. slughorn-0.0.2/ext/json/LICENSES/MIT.txt +9 -0
  77. slughorn-0.0.2/ext/json/MODULE.bazel +7 -0
  78. slughorn-0.0.2/ext/json/Makefile +266 -0
  79. slughorn-0.0.2/ext/json/Package.swift +22 -0
  80. slughorn-0.0.2/ext/json/README.md +1893 -0
  81. slughorn-0.0.2/ext/json/cmake/ci.cmake +725 -0
  82. slughorn-0.0.2/ext/json/cmake/clang_flags.cmake +22 -0
  83. slughorn-0.0.2/ext/json/cmake/config.cmake.in +15 -0
  84. slughorn-0.0.2/ext/json/cmake/detect_libcpp_version.cpp +31 -0
  85. slughorn-0.0.2/ext/json/cmake/download_test_data.cmake +87 -0
  86. slughorn-0.0.2/ext/json/cmake/gcc_flags.cmake +363 -0
  87. slughorn-0.0.2/ext/json/cmake/nlohmann_jsonConfigVersion.cmake.in +20 -0
  88. slughorn-0.0.2/ext/json/cmake/pkg-config.pc.in +7 -0
  89. slughorn-0.0.2/ext/json/cmake/requirements/requirements-cppcheck.txt +1 -0
  90. slughorn-0.0.2/ext/json/cmake/requirements/requirements-cpplint.txt +1 -0
  91. slughorn-0.0.2/ext/json/cmake/requirements/requirements-reuse.txt +1 -0
  92. slughorn-0.0.2/ext/json/cmake/scripts/gen_bazel_build_file.cmake +24 -0
  93. slughorn-0.0.2/ext/json/cmake/test.cmake +273 -0
  94. slughorn-0.0.2/ext/json/docs/Makefile +44 -0
  95. slughorn-0.0.2/ext/json/docs/README.md +23 -0
  96. slughorn-0.0.2/ext/json/docs/avatars.png +0 -0
  97. slughorn-0.0.2/ext/json/docs/docset/Info.plist +20 -0
  98. slughorn-0.0.2/ext/json/docs/docset/Makefile +88 -0
  99. slughorn-0.0.2/ext/json/docs/docset/README.md +19 -0
  100. slughorn-0.0.2/ext/json/docs/docset/docSet.sql +244 -0
  101. slughorn-0.0.2/ext/json/docs/docset/docset.json +10 -0
  102. slughorn-0.0.2/ext/json/docs/docset/icon.png +0 -0
  103. slughorn-0.0.2/ext/json/docs/docset/icon@2x.png +0 -0
  104. slughorn-0.0.2/ext/json/docs/json.gif +0 -0
  105. slughorn-0.0.2/ext/json/docs/mkdocs/Makefile +45 -0
  106. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/adl_serializer/from_json.md +73 -0
  107. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/adl_serializer/index.md +35 -0
  108. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/adl_serializer/to_json.md +43 -0
  109. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/accept.md +120 -0
  110. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/array.md +60 -0
  111. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/array_t.md +68 -0
  112. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/at.md +226 -0
  113. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/back.md +65 -0
  114. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/basic_json.md +402 -0
  115. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/begin.md +42 -0
  116. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/binary.md +66 -0
  117. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/binary_t.md +89 -0
  118. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/boolean_t.md +42 -0
  119. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/cbegin.md +41 -0
  120. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/cbor_tag_handler_t.md +42 -0
  121. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/cend.md +41 -0
  122. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/clear.md +58 -0
  123. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/contains.md +118 -0
  124. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/count.md +78 -0
  125. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/crbegin.md +41 -0
  126. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/crend.md +42 -0
  127. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/default_object_comparator_t.md +35 -0
  128. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/diff.md +62 -0
  129. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/dump.md +79 -0
  130. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/emplace.md +61 -0
  131. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/emplace_back.md +65 -0
  132. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/empty.md +66 -0
  133. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/end.md +42 -0
  134. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/end_pos.md +68 -0
  135. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/erase.md +211 -0
  136. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/error_handler_t.md +42 -0
  137. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/exception.md +87 -0
  138. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/find.md +86 -0
  139. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/flatten.md +50 -0
  140. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/from_bjdata.md +93 -0
  141. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/from_bson.md +110 -0
  142. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/from_cbor.md +117 -0
  143. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/from_msgpack.md +109 -0
  144. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/from_ubjson.md +106 -0
  145. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/front.md +58 -0
  146. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/get.md +136 -0
  147. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/get_allocator.md +31 -0
  148. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/get_binary.md +45 -0
  149. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/get_ptr.md +94 -0
  150. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/get_ref.md +68 -0
  151. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/get_to.md +58 -0
  152. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/index.md +336 -0
  153. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/input_format_t.md +52 -0
  154. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/insert.md +190 -0
  155. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/invalid_iterator.md +77 -0
  156. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_array.md +39 -0
  157. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_binary.md +39 -0
  158. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_boolean.md +39 -0
  159. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_discarded.md +72 -0
  160. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_null.md +39 -0
  161. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_number.md +56 -0
  162. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_number_float.md +46 -0
  163. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_number_integer.md +47 -0
  164. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_number_unsigned.md +46 -0
  165. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_object.md +39 -0
  166. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_primitive.md +69 -0
  167. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_string.md +39 -0
  168. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/is_structured.md +63 -0
  169. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/items.md +100 -0
  170. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/json_base_class_t.md +45 -0
  171. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/json_serializer.md +41 -0
  172. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/max_size.md +60 -0
  173. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/merge_patch.md +63 -0
  174. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/meta.md +56 -0
  175. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/number_float_t.md +70 -0
  176. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/number_integer_t.md +76 -0
  177. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/number_unsigned_t.md +76 -0
  178. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/object.md +63 -0
  179. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/object_comparator_t.md +32 -0
  180. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/object_t.md +114 -0
  181. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator+=.md +124 -0
  182. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator=.md +43 -0
  183. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator[].md +250 -0
  184. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator_ValueType.md +82 -0
  185. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator_eq.md +168 -0
  186. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator_ge.md +86 -0
  187. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator_gt.md +86 -0
  188. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator_le.md +87 -0
  189. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator_lt.md +96 -0
  190. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator_ne.md +98 -0
  191. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator_spaceship.md +100 -0
  192. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/operator_value_t.md +54 -0
  193. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/other_error.md +77 -0
  194. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/out_of_range.md +78 -0
  195. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/parse.md +246 -0
  196. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/parse_error.md +86 -0
  197. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/parse_event_t.md +29 -0
  198. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/parser_callback_t.md +73 -0
  199. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/patch.md +73 -0
  200. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/patch_inplace.md +70 -0
  201. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/push_back.md +120 -0
  202. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/rbegin.md +42 -0
  203. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/rend.md +43 -0
  204. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/sax_parse.md +134 -0
  205. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/size.md +57 -0
  206. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/start_pos.md +68 -0
  207. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/std_hash.md +34 -0
  208. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/std_swap.md +51 -0
  209. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/string_t.md +66 -0
  210. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/swap.md +157 -0
  211. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/to_bjdata.md +78 -0
  212. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/to_bson.md +59 -0
  213. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/to_cbor.md +61 -0
  214. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/to_msgpack.md +59 -0
  215. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/to_string.md +65 -0
  216. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/to_ubjson.md +70 -0
  217. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/type.md +54 -0
  218. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/type_error.md +78 -0
  219. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/type_name.md +54 -0
  220. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/unflatten.md +61 -0
  221. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/update.md +147 -0
  222. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/value.md +183 -0
  223. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/value_t.md +81 -0
  224. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/basic_json/~basic_json.md +21 -0
  225. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/byte_container_with_subtype/byte_container_with_subtype.md +46 -0
  226. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/byte_container_with_subtype/clear_subtype.md +36 -0
  227. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/byte_container_with_subtype/has_subtype.md +39 -0
  228. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/byte_container_with_subtype/index.md +35 -0
  229. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/byte_container_with_subtype/set_subtype.md +41 -0
  230. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/byte_container_with_subtype/subtype.md +42 -0
  231. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json.md +28 -0
  232. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/back.md +40 -0
  233. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/empty.md +39 -0
  234. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/index.md +52 -0
  235. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/json_pointer.md +41 -0
  236. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/operator_eq.md +113 -0
  237. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/operator_ne.md +109 -0
  238. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/operator_slash.md +64 -0
  239. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/operator_slasheq.md +61 -0
  240. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/operator_string_t.md +52 -0
  241. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/parent_pointer.md +35 -0
  242. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/pop_back.md +35 -0
  243. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/push_back.md +39 -0
  244. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/string_t.md +28 -0
  245. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_pointer/to_string.md +40 -0
  246. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/binary.md +40 -0
  247. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/boolean.md +36 -0
  248. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/end_array.md +31 -0
  249. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/end_object.md +31 -0
  250. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/index.md +44 -0
  251. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/key.md +40 -0
  252. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/null.md +31 -0
  253. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/number_float.md +39 -0
  254. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/number_integer.md +36 -0
  255. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/number_unsigned.md +36 -0
  256. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/parse_error.md +44 -0
  257. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/start_array.md +40 -0
  258. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/start_object.md +40 -0
  259. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/json_sax/string.md +40 -0
  260. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/index.md +83 -0
  261. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_assert.md +88 -0
  262. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_diagnostic_positions.md +119 -0
  263. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_diagnostics.md +94 -0
  264. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_disable_enum_serialization.md +154 -0
  265. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_has_cpp_11.md +41 -0
  266. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_has_filesystem.md +43 -0
  267. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_has_ranges.md +31 -0
  268. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_has_static_rtti.md +31 -0
  269. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_has_three_way_comparison.md +32 -0
  270. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_no_io.md +35 -0
  271. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_noexception.md +45 -0
  272. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_skip_library_version_check.md +37 -0
  273. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_skip_unsupported_compiler_check.md +33 -0
  274. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_throw_user.md +75 -0
  275. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_use_global_udls.md +99 -0
  276. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_use_implicit_conversions.md +60 -0
  277. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/json_use_legacy_discarded_value_comparison.md +81 -0
  278. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/nlohmann_define_derived_type.md +177 -0
  279. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/nlohmann_define_type_intrusive.md +170 -0
  280. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/nlohmann_define_type_non_intrusive.md +171 -0
  281. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/nlohmann_json_namespace.md +41 -0
  282. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/nlohmann_json_namespace_begin.md +61 -0
  283. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/nlohmann_json_namespace_no_version.md +45 -0
  284. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/nlohmann_json_serialize_enum.md +85 -0
  285. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/macros/nlohmann_json_version_major.md +40 -0
  286. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/operator_gtgt.md +64 -0
  287. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/operator_literal_json.md +63 -0
  288. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/operator_literal_json_pointer.md +66 -0
  289. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/operator_ltlt.md +87 -0
  290. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/ordered_json.md +39 -0
  291. slughorn-0.0.2/ext/json/docs/mkdocs/docs/api/ordered_map.md +82 -0
  292. slughorn-0.0.2/ext/json/docs/mkdocs/docs/community/code_of_conduct.md +1 -0
  293. slughorn-0.0.2/ext/json/docs/mkdocs/docs/community/contribution_guidelines.md +1 -0
  294. slughorn-0.0.2/ext/json/docs/mkdocs/docs/community/governance.md +122 -0
  295. slughorn-0.0.2/ext/json/docs/mkdocs/docs/community/index.md +7 -0
  296. slughorn-0.0.2/ext/json/docs/mkdocs/docs/community/quality_assurance.md +219 -0
  297. slughorn-0.0.2/ext/json/docs/mkdocs/docs/community/security_policy.md +1 -0
  298. slughorn-0.0.2/ext/json/docs/mkdocs/docs/css/custom.css +4 -0
  299. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/README.cpp +39 -0
  300. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/README.output +27 -0
  301. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/accept__string.cpp +26 -0
  302. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/accept__string.output +1 -0
  303. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/array.cpp +19 -0
  304. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/array.output +4 -0
  305. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/array_t.cpp +10 -0
  306. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/array_t.output +1 -0
  307. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__json_pointer.cpp +103 -0
  308. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__json_pointer.output +12 -0
  309. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__json_pointer_const.cpp +80 -0
  310. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__json_pointer_const.output +9 -0
  311. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__keytype.c++17.cpp +49 -0
  312. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__keytype.c++17.output +4 -0
  313. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__keytype_const.c++17.cpp +43 -0
  314. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__keytype_const.c++17.output +3 -0
  315. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__object_t_key_type.cpp +47 -0
  316. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__object_t_key_type.output +4 -0
  317. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__object_t_key_type_const.cpp +41 -0
  318. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__object_t_key_type_const.output +3 -0
  319. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__size_type.cpp +42 -0
  320. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__size_type.output +4 -0
  321. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__size_type_const.cpp +36 -0
  322. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/at__size_type_const.output +3 -0
  323. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/back.cpp +38 -0
  324. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/back.output +7 -0
  325. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__CompatibleType.cpp +214 -0
  326. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__CompatibleType.output +39 -0
  327. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__InputIt_InputIt.cpp +32 -0
  328. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__InputIt_InputIt.output +4 -0
  329. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__basic_json.cpp +17 -0
  330. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__basic_json.output +2 -0
  331. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__copyassignment.cpp +18 -0
  332. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__copyassignment.output +2 -0
  333. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__list_init_t.cpp +21 -0
  334. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__list_init_t.output +5 -0
  335. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__moveconstructor.cpp +17 -0
  336. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__moveconstructor.output +2 -0
  337. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__nullptr_t.cpp +16 -0
  338. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__nullptr_t.output +2 -0
  339. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__size_type_basic_json.cpp +18 -0
  340. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__size_type_basic_json.output +3 -0
  341. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__value_t.cpp +25 -0
  342. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/basic_json__value_t.output +7 -0
  343. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/begin.cpp +16 -0
  344. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/begin.output +1 -0
  345. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/binary.cpp +16 -0
  346. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/binary.output +1 -0
  347. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/binary_t.cpp +10 -0
  348. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/binary_t.output +1 -0
  349. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/boolean_t.cpp +10 -0
  350. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/boolean_t.output +1 -0
  351. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__byte_container_with_subtype.cpp +23 -0
  352. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__byte_container_with_subtype.output +3 -0
  353. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__clear_subtype.cpp +21 -0
  354. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__clear_subtype.output +2 -0
  355. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__has_subtype.cpp +19 -0
  356. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__has_subtype.output +2 -0
  357. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__set_subtype.cpp +22 -0
  358. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__set_subtype.output +2 -0
  359. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__subtype.cpp +22 -0
  360. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/byte_container_with_subtype__subtype.output +2 -0
  361. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/cbegin.cpp +16 -0
  362. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/cbegin.output +1 -0
  363. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/cbor_tag_handler_t.cpp +28 -0
  364. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/cbor_tag_handler_t.output +3 -0
  365. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/cend.cpp +19 -0
  366. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/cend.output +1 -0
  367. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/clear.cpp +34 -0
  368. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/clear.output +7 -0
  369. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/comments.cpp +31 -0
  370. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/comments.output +12 -0
  371. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/contains__json_pointer.cpp +43 -0
  372. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/contains__json_pointer.output +7 -0
  373. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/contains__keytype.c++17.cpp +20 -0
  374. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/contains__keytype.c++17.output +3 -0
  375. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/contains__object_t_key_type.cpp +18 -0
  376. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/contains__object_t_key_type.output +3 -0
  377. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/count__keytype.c++17.cpp +20 -0
  378. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/count__keytype.c++17.output +2 -0
  379. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/count__object_t_key_type.cpp +18 -0
  380. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/count__object_t_key_type.output +2 -0
  381. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/crbegin.cpp +16 -0
  382. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/crbegin.output +1 -0
  383. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/crend.cpp +19 -0
  384. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/crend.output +1 -0
  385. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/default_object_comparator_t.cpp +11 -0
  386. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/default_object_comparator_t.output +2 -0
  387. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostic_positions.cpp +51 -0
  388. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostic_positions.output +50 -0
  389. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostic_positions_exception.cpp +30 -0
  390. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostic_positions_exception.output +1 -0
  391. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostics_extended.cpp +22 -0
  392. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostics_extended.output +1 -0
  393. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostics_extended_positions.cpp +31 -0
  394. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostics_extended_positions.output +1 -0
  395. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostics_standard.cpp +20 -0
  396. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diagnostics_standard.output +1 -0
  397. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diff.cpp +37 -0
  398. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/diff.output +25 -0
  399. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/dump.cpp +48 -0
  400. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/dump.output +55 -0
  401. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/emplace.cpp +31 -0
  402. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/emplace.output +6 -0
  403. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/emplace_back.cpp +24 -0
  404. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/emplace_back.output +4 -0
  405. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/empty.cpp +30 -0
  406. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/empty.output +9 -0
  407. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/end.cpp +19 -0
  408. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/end.output +1 -0
  409. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__IteratorType.cpp +31 -0
  410. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__IteratorType.output +6 -0
  411. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__IteratorType_IteratorType.cpp +31 -0
  412. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__IteratorType_IteratorType.output +6 -0
  413. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__keytype.c++17.cpp +20 -0
  414. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__keytype.c++17.output +2 -0
  415. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__object_t_key_type.cpp +18 -0
  416. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__object_t_key_type.output +2 -0
  417. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__size_type.cpp +16 -0
  418. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/erase__size_type.output +1 -0
  419. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/error_handler_t.cpp +24 -0
  420. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/error_handler_t.output +3 -0
  421. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/exception.cpp +20 -0
  422. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/exception.output +2 -0
  423. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/find__keytype.c++17.cpp +22 -0
  424. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/find__keytype.c++17.output +3 -0
  425. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/find__object_t_key_type.cpp +20 -0
  426. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/find__object_t_key_type.output +3 -0
  427. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/flatten.cpp +32 -0
  428. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/flatten.output +12 -0
  429. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_bjdata.cpp +20 -0
  430. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_bjdata.output +4 -0
  431. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_bson.cpp +21 -0
  432. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_bson.output +4 -0
  433. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_cbor.cpp +20 -0
  434. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_cbor.output +4 -0
  435. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_json__default_constructible.cpp +37 -0
  436. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_json__default_constructible.output +1 -0
  437. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_json__non_default_constructible.cpp +53 -0
  438. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_json__non_default_constructible.output +1 -0
  439. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_msgpack.cpp +20 -0
  440. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_msgpack.output +4 -0
  441. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_ubjson.cpp +20 -0
  442. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/from_ubjson.output +4 -0
  443. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/front.cpp +29 -0
  444. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/front.output +6 -0
  445. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get__PointerType.cpp +21 -0
  446. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get__PointerType.output +2 -0
  447. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get__ValueType_const.cpp +50 -0
  448. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get__ValueType_const.output +11 -0
  449. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_allocator.cpp +18 -0
  450. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_allocator.output +1 -0
  451. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_binary.cpp +16 -0
  452. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_binary.output +1 -0
  453. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_ptr.cpp +21 -0
  454. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_ptr.output +2 -0
  455. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_ref.cpp +27 -0
  456. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_ref.output +2 -0
  457. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_to.cpp +59 -0
  458. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/get_to.output +11 -0
  459. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert.cpp +17 -0
  460. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert.output +2 -0
  461. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert__count.cpp +17 -0
  462. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert__count.output +2 -0
  463. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert__ilist.cpp +17 -0
  464. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert__ilist.output +2 -0
  465. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert__range.cpp +20 -0
  466. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert__range.output +2 -0
  467. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert__range_object.cpp +21 -0
  468. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/insert__range_object.output +3 -0
  469. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/invalid_iterator.cpp +21 -0
  470. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/invalid_iterator.output +2 -0
  471. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_array.cpp +30 -0
  472. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_array.output +9 -0
  473. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_binary.cpp +30 -0
  474. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_binary.output +9 -0
  475. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_boolean.cpp +30 -0
  476. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_boolean.output +9 -0
  477. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_discarded.cpp +30 -0
  478. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_discarded.output +9 -0
  479. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_null.cpp +30 -0
  480. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_null.output +9 -0
  481. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_number.cpp +30 -0
  482. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_number.output +9 -0
  483. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_number_float.cpp +30 -0
  484. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_number_float.output +9 -0
  485. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_number_integer.cpp +30 -0
  486. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_number_integer.output +9 -0
  487. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_number_unsigned.cpp +30 -0
  488. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_number_unsigned.output +9 -0
  489. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_object.cpp +30 -0
  490. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_object.output +9 -0
  491. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_primitive.cpp +30 -0
  492. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_primitive.output +9 -0
  493. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_string.cpp +30 -0
  494. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_string.output +9 -0
  495. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_structured.cpp +30 -0
  496. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/is_structured.output +9 -0
  497. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/items.cpp +23 -0
  498. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/items.output +7 -0
  499. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_base_class_t.cpp +88 -0
  500. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_base_class_t.output +4 -0
  501. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_lines.cpp +22 -0
  502. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_lines.output +4 -0
  503. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer.cpp +47 -0
  504. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer.output +3 -0
  505. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__back.cpp +15 -0
  506. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__back.output +2 -0
  507. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__empty.cpp +20 -0
  508. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__empty.output +4 -0
  509. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator__equal.cpp +19 -0
  510. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator__equal.output +4 -0
  511. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator__equal_stringtype.cpp +33 -0
  512. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator__equal_stringtype.output +4 -0
  513. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator__notequal.cpp +19 -0
  514. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator__notequal.output +4 -0
  515. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator__notequal_stringtype.cpp +32 -0
  516. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator__notequal_stringtype.output +4 -0
  517. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator_add.cpp +23 -0
  518. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator_add.output +4 -0
  519. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator_add_binary.cpp +19 -0
  520. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator_add_binary.output +3 -0
  521. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator_string_t.cpp +19 -0
  522. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__operator_string_t.output +2 -0
  523. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__parent_pointer.cpp +18 -0
  524. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__parent_pointer.output +3 -0
  525. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__pop_back.cpp +21 -0
  526. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__pop_back.output +4 -0
  527. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__push_back.cpp +21 -0
  528. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__push_back.output +4 -0
  529. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__string_t.cpp +13 -0
  530. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__string_t.output +2 -0
  531. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__to_string.cpp +34 -0
  532. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/json_pointer__to_string.output +12 -0
  533. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/max_size.cpp +25 -0
  534. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/max_size.output +7 -0
  535. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/merge_patch.cpp +41 -0
  536. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/merge_patch.output +11 -0
  537. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/meta.cpp +11 -0
  538. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/meta.output +17 -0
  539. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_derived_type_intrusive_macro.cpp +37 -0
  540. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_derived_type_intrusive_macro.output +6 -0
  541. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_explicit.cpp +62 -0
  542. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_explicit.output +2 -0
  543. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_macro.cpp +48 -0
  544. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_macro.output +2 -0
  545. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_only_serialize_explicit.cpp +39 -0
  546. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_only_serialize_explicit.output +1 -0
  547. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_only_serialize_macro.cpp +33 -0
  548. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_only_serialize_macro.output +1 -0
  549. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_with_default_explicit.cpp +57 -0
  550. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_with_default_explicit.output +2 -0
  551. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_with_default_macro.cpp +42 -0
  552. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_intrusive_with_default_macro.output +2 -0
  553. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_explicit.cpp +55 -0
  554. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_explicit.output +2 -0
  555. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_macro.cpp +41 -0
  556. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_macro.output +2 -0
  557. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_only_serialize_explicit.cpp +32 -0
  558. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_only_serialize_explicit.output +1 -0
  559. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_only_serialize_macro.cpp +26 -0
  560. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_only_serialize_macro.output +1 -0
  561. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_with_default_explicit.cpp +55 -0
  562. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_with_default_explicit.output +2 -0
  563. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_with_default_macro.cpp +40 -0
  564. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_define_type_non_intrusive_with_default_macro.output +2 -0
  565. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_namespace.cpp +14 -0
  566. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_namespace.output +1 -0
  567. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_namespace_begin.c++17.cpp +33 -0
  568. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_namespace_begin.c++17.output +1 -0
  569. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_namespace_no_version.cpp +13 -0
  570. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_namespace_no_version.output +1 -0
  571. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_serialize_enum.cpp +59 -0
  572. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_serialize_enum.output +3 -0
  573. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_serialize_enum_2.cpp +33 -0
  574. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_serialize_enum_2.output +3 -0
  575. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_version.cpp +12 -0
  576. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/nlohmann_json_version.output +1 -0
  577. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/number_float_t.cpp +10 -0
  578. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/number_float_t.output +1 -0
  579. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/number_integer_t.cpp +10 -0
  580. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/number_integer_t.output +1 -0
  581. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/number_unsigned_t.cpp +10 -0
  582. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/number_unsigned_t.output +1 -0
  583. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/object.cpp +28 -0
  584. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/object.output +4 -0
  585. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/object_comparator_t.cpp +11 -0
  586. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/object_comparator_t.output +2 -0
  587. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/object_t.cpp +10 -0
  588. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/object_t.output +1 -0
  589. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__ValueType.cpp +60 -0
  590. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__ValueType.output +12 -0
  591. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__equal.cpp +24 -0
  592. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__equal.output +4 -0
  593. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__equal__nullptr_t.cpp +22 -0
  594. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__equal__nullptr_t.output +5 -0
  595. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__equal__specializations.cpp +16 -0
  596. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__equal__specializations.output +2 -0
  597. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__greater.cpp +24 -0
  598. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__greater.output +4 -0
  599. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__greaterequal.cpp +24 -0
  600. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__greaterequal.output +4 -0
  601. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__less.cpp +24 -0
  602. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__less.output +4 -0
  603. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__lessequal.cpp +24 -0
  604. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__lessequal.output +4 -0
  605. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__notequal.cpp +24 -0
  606. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__notequal.output +4 -0
  607. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__notequal__nullptr_t.cpp +22 -0
  608. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__notequal__nullptr_t.output +5 -0
  609. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__value_t.cpp +38 -0
  610. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator__value_t.output +8 -0
  611. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__json_pointer.cpp +49 -0
  612. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__json_pointer.output +8 -0
  613. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__json_pointer_const.cpp +25 -0
  614. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__json_pointer_const.output +4 -0
  615. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__keytype.c++17.cpp +34 -0
  616. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__keytype.c++17.output +19 -0
  617. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__keytype_const.c++17.cpp +18 -0
  618. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__keytype_const.c++17.output +1 -0
  619. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__object_t_key_type.cpp +32 -0
  620. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__object_t_key_type.output +19 -0
  621. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__object_t_key_type_const.cpp +16 -0
  622. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__object_t_key_type_const.output +1 -0
  623. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__size_type.cpp +25 -0
  624. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__size_type.output +3 -0
  625. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__size_type_const.cpp +13 -0
  626. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_array__size_type_const.output +1 -0
  627. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_deserialize.cpp +26 -0
  628. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_deserialize.output +13 -0
  629. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_literal_json.cpp +13 -0
  630. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_literal_json.output +4 -0
  631. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_literal_json_pointer.cpp +14 -0
  632. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_literal_json_pointer.output +1 -0
  633. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_ltlt__basic_json.cpp +21 -0
  634. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_ltlt__basic_json.output +22 -0
  635. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_ltlt__json_pointer.cpp +13 -0
  636. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_ltlt__json_pointer.output +1 -0
  637. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_spaceship__const_reference.c++20.cpp +40 -0
  638. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_spaceship__const_reference.c++20.output +4 -0
  639. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_spaceship__scalartype.c++20.cpp +40 -0
  640. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/operator_spaceship__scalartype.c++20.output +4 -0
  641. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/ordered_json.cpp +14 -0
  642. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/ordered_json.output +5 -0
  643. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/ordered_map.cpp +43 -0
  644. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/ordered_map.output +4 -0
  645. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/other_error.cpp +30 -0
  646. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/other_error.output +2 -0
  647. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/out_of_range.cpp +20 -0
  648. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/out_of_range.output +2 -0
  649. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__allow_exceptions.cpp +36 -0
  650. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__allow_exceptions.output +2 -0
  651. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__array__parser_callback_t.cpp +30 -0
  652. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__array__parser_callback_t.output +20 -0
  653. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__contiguouscontainer__parser_callback_t.cpp +15 -0
  654. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__contiguouscontainer__parser_callback_t.output +6 -0
  655. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__istream__parser_callback_t.cpp +57 -0
  656. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__istream__parser_callback_t.output +34 -0
  657. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__iterator_pair.cpp +15 -0
  658. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__iterator_pair.link +1 -0
  659. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__iterator_pair.output +6 -0
  660. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__pointers.cpp +15 -0
  661. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__pointers.link +1 -0
  662. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__pointers.output +6 -0
  663. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__string__parser_callback_t.cpp +48 -0
  664. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse__string__parser_callback_t.output +34 -0
  665. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse_error.cpp +20 -0
  666. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/parse_error.output +3 -0
  667. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/patch.cpp +33 -0
  668. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/patch.output +11 -0
  669. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/patch_inplace.cpp +35 -0
  670. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/patch_inplace.output +13 -0
  671. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/push_back.cpp +25 -0
  672. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/push_back.output +4 -0
  673. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/push_back__initializer_list.cpp +27 -0
  674. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/push_back__initializer_list.output +4 -0
  675. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/push_back__object_t__value.cpp +25 -0
  676. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/push_back__object_t__value.output +4 -0
  677. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/rbegin.cpp +16 -0
  678. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/rbegin.output +1 -0
  679. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/rend.cpp +19 -0
  680. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/rend.output +1 -0
  681. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/sax_parse.cpp +131 -0
  682. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/sax_parse.output +37 -0
  683. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/sax_parse__binary.cpp +114 -0
  684. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/sax_parse__binary.output +3 -0
  685. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/size.cpp +29 -0
  686. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/size.output +9 -0
  687. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/std_hash.cpp +19 -0
  688. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/std_hash.output +8 -0
  689. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/std_swap.cpp +19 -0
  690. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/std_swap.output +2 -0
  691. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/string_t.cpp +10 -0
  692. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/string_t.output +1 -0
  693. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__array_t.cpp +20 -0
  694. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__array_t.output +2 -0
  695. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__binary_t.cpp +20 -0
  696. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__binary_t.output +2 -0
  697. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__object_t.cpp +20 -0
  698. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__object_t.output +2 -0
  699. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__reference.cpp +18 -0
  700. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__reference.output +2 -0
  701. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__string_t.cpp +20 -0
  702. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/swap__string_t.output +2 -0
  703. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_bjdata.cpp +64 -0
  704. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_bjdata.output +4 -0
  705. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_bson.cpp +22 -0
  706. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_bson.output +1 -0
  707. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_cbor.cpp +22 -0
  708. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_cbor.output +1 -0
  709. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_json.cpp +32 -0
  710. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_json.output +1 -0
  711. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_msgpack.cpp +22 -0
  712. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_msgpack.output +1 -0
  713. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_string.cpp +20 -0
  714. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_string.output +3 -0
  715. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_ubjson.cpp +64 -0
  716. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/to_ubjson.output +4 -0
  717. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/trailing_commas.cpp +37 -0
  718. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/trailing_commas.output +12 -0
  719. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/type.cpp +28 -0
  720. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/type.output +8 -0
  721. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/type_error.cpp +20 -0
  722. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/type_error.output +2 -0
  723. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/type_name.cpp +27 -0
  724. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/type_name.output +8 -0
  725. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/unflatten.cpp +26 -0
  726. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/unflatten.output +18 -0
  727. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/update.cpp +24 -0
  728. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/update.output +17 -0
  729. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/update__range.cpp +24 -0
  730. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/update__range.output +17 -0
  731. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/value__json_ptr.cpp +31 -0
  732. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/value__json_ptr.output +1 -0
  733. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/value__keytype.c++17.cpp +32 -0
  734. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/value__keytype.c++17.output +1 -0
  735. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/value__object_t_key_type.cpp +30 -0
  736. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/value__object_t_key_type.output +1 -0
  737. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/value__return_type.cpp +14 -0
  738. slughorn-0.0.2/ext/json/docs/mkdocs/docs/examples/value__return_type.output +4 -0
  739. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/arbitrary_types.md +294 -0
  740. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/assertions.md +144 -0
  741. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/binary_formats/bjdata.md +206 -0
  742. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/binary_formats/bson.md +97 -0
  743. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/binary_formats/cbor.md +181 -0
  744. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/binary_formats/index.md +52 -0
  745. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/binary_formats/messagepack.md +143 -0
  746. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/binary_formats/ubjson.md +126 -0
  747. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/binary_values.md +374 -0
  748. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/comments.md +40 -0
  749. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/element_access/checked_access.md +91 -0
  750. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/element_access/default_value.md +63 -0
  751. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/element_access/index.md +9 -0
  752. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/element_access/unchecked_access.md +112 -0
  753. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/enum_conversion.md +61 -0
  754. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/iterators.md +155 -0
  755. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/json_patch.md +47 -0
  756. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/json_pointer.md +126 -0
  757. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/macros.md +135 -0
  758. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/merge_patch.md +20 -0
  759. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/modules.md +34 -0
  760. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/namespace.md +94 -0
  761. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/object_order.md +109 -0
  762. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/parsing/index.md +13 -0
  763. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/parsing/json_lines.md +49 -0
  764. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/parsing/parse_exceptions.md +121 -0
  765. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/parsing/parser_callbacks.md +83 -0
  766. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/parsing/sax_interface.md +76 -0
  767. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/trailing_commas.md +39 -0
  768. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/types/index.md +271 -0
  769. slughorn-0.0.2/ext/json/docs/mkdocs/docs/features/types/number_handling.md +328 -0
  770. slughorn-0.0.2/ext/json/docs/mkdocs/docs/home/architecture.md +124 -0
  771. slughorn-0.0.2/ext/json/docs/mkdocs/docs/home/customers.md +177 -0
  772. slughorn-0.0.2/ext/json/docs/mkdocs/docs/home/design_goals.md +17 -0
  773. slughorn-0.0.2/ext/json/docs/mkdocs/docs/home/exceptions.md +912 -0
  774. slughorn-0.0.2/ext/json/docs/mkdocs/docs/home/faq.md +180 -0
  775. slughorn-0.0.2/ext/json/docs/mkdocs/docs/home/license.md +21 -0
  776. slughorn-0.0.2/ext/json/docs/mkdocs/docs/home/releases.md +1225 -0
  777. slughorn-0.0.2/ext/json/docs/mkdocs/docs/home/sponsors.md +19 -0
  778. slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/callback_events.png +0 -0
  779. slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/customers.png +0 -0
  780. slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/json.gif +0 -0
  781. slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/json_syntax_number.png +0 -0
  782. slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/CPM.png +0 -0
  783. slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/bazel.svg +11 -0
  784. slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/conan.svg +16 -0
  785. slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/conda.svg +1 -0
  786. slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/homebrew.svg +22 -0
  787. slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/macports.svg +81 -0
  788. slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/meson.svg +2 -0
  789. slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/nuget.svg +21 -0
  790. slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/spack.svg +61 -0
  791. slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/swift.svg +1 -0
  792. slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/vcpkg.png +0 -0
  793. slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/package_managers/xmake.svg +60 -0
  794. slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/range-begin-end.svg +435 -0
  795. slughorn-0.0.2/ext/json/docs/mkdocs/docs/images/range-rbegin-rend.svg +1232 -0
  796. slughorn-0.0.2/ext/json/docs/mkdocs/docs/index.md +3 -0
  797. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/bazel/BUILD +5 -0
  798. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/bazel/MODULE.bazel +1 -0
  799. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/bazel/example.cpp +10 -0
  800. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/cget/CMakeLists.txt +7 -0
  801. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/cget/example.cpp +10 -0
  802. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/cmake.md +178 -0
  803. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/conan/CMakeLists.txt +7 -0
  804. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/conan/Conanfile.txt +6 -0
  805. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/conan/example.cpp +10 -0
  806. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/conda/example.cpp +10 -0
  807. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/cpm/CMakeLists.txt +9 -0
  808. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/cpm/example.cpp +10 -0
  809. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/example.cpp +10 -0
  810. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/homebrew/CMakeLists.txt +7 -0
  811. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/homebrew/example.cpp +10 -0
  812. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/hunter/CMakeLists.txt +15 -0
  813. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/hunter/example.cpp +10 -0
  814. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/index.md +18 -0
  815. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/macports/CMakeLists.txt +7 -0
  816. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/macports/example.cpp +10 -0
  817. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/meson/example.cpp +10 -0
  818. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/meson/meson.build +12 -0
  819. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/migration_guide.md +264 -0
  820. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/nuget/nuget-package-content.png +0 -0
  821. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/nuget/nuget-project-changes.png +0 -0
  822. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/nuget/nuget-project-makefile.png +0 -0
  823. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/nuget/nuget-search-package.png +0 -0
  824. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/nuget/nuget-select-package.png +0 -0
  825. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/package_managers.md +826 -0
  826. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/pkg-config.md +13 -0
  827. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/spack/CMakeLists.txt +7 -0
  828. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/spack/example.cpp +10 -0
  829. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/vcpkg/CMakeLists.txt +7 -0
  830. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/vcpkg/example.cpp +10 -0
  831. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/xmake/example.cpp +10 -0
  832. slughorn-0.0.2/ext/json/docs/mkdocs/docs/integration/xmake/xmake.lua +8 -0
  833. slughorn-0.0.2/ext/json/docs/mkdocs/includes/glossary.md +36 -0
  834. slughorn-0.0.2/ext/json/docs/mkdocs/mkdocs.yml +383 -0
  835. slughorn-0.0.2/ext/json/docs/mkdocs/requirements.txt +11 -0
  836. slughorn-0.0.2/ext/json/docs/mkdocs/scripts/check_structure.py +222 -0
  837. slughorn-0.0.2/ext/json/include/nlohmann/adl_serializer.hpp +55 -0
  838. slughorn-0.0.2/ext/json/include/nlohmann/byte_container_with_subtype.hpp +103 -0
  839. slughorn-0.0.2/ext/json/include/nlohmann/detail/abi_macros.hpp +111 -0
  840. slughorn-0.0.2/ext/json/include/nlohmann/detail/conversions/from_json.hpp +610 -0
  841. slughorn-0.0.2/ext/json/include/nlohmann/detail/conversions/to_chars.hpp +1118 -0
  842. slughorn-0.0.2/ext/json/include/nlohmann/detail/conversions/to_json.hpp +486 -0
  843. slughorn-0.0.2/ext/json/include/nlohmann/detail/exceptions.hpp +291 -0
  844. slughorn-0.0.2/ext/json/include/nlohmann/detail/hash.hpp +129 -0
  845. slughorn-0.0.2/ext/json/include/nlohmann/detail/input/binary_reader.hpp +3087 -0
  846. slughorn-0.0.2/ext/json/include/nlohmann/detail/input/input_adapters.hpp +550 -0
  847. slughorn-0.0.2/ext/json/include/nlohmann/detail/input/json_sax.hpp +986 -0
  848. slughorn-0.0.2/ext/json/include/nlohmann/detail/input/lexer.hpp +1647 -0
  849. slughorn-0.0.2/ext/json/include/nlohmann/detail/input/parser.hpp +536 -0
  850. slughorn-0.0.2/ext/json/include/nlohmann/detail/input/position_t.hpp +37 -0
  851. slughorn-0.0.2/ext/json/include/nlohmann/detail/iterators/internal_iterator.hpp +35 -0
  852. slughorn-0.0.2/ext/json/include/nlohmann/detail/iterators/iter_impl.hpp +760 -0
  853. slughorn-0.0.2/ext/json/include/nlohmann/detail/iterators/iteration_proxy.hpp +235 -0
  854. slughorn-0.0.2/ext/json/include/nlohmann/detail/iterators/iterator_traits.hpp +61 -0
  855. slughorn-0.0.2/ext/json/include/nlohmann/detail/iterators/json_reverse_iterator.hpp +130 -0
  856. slughorn-0.0.2/ext/json/include/nlohmann/detail/iterators/primitive_iterator.hpp +132 -0
  857. slughorn-0.0.2/ext/json/include/nlohmann/detail/json_custom_base_class.hpp +39 -0
  858. slughorn-0.0.2/ext/json/include/nlohmann/detail/json_pointer.hpp +988 -0
  859. slughorn-0.0.2/ext/json/include/nlohmann/detail/json_ref.hpp +78 -0
  860. slughorn-0.0.2/ext/json/include/nlohmann/detail/macro_scope.hpp +601 -0
  861. slughorn-0.0.2/ext/json/include/nlohmann/detail/macro_unscope.hpp +47 -0
  862. slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/call_std/begin.hpp +17 -0
  863. slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/call_std/end.hpp +17 -0
  864. slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/cpp_future.hpp +171 -0
  865. slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/detected.hpp +70 -0
  866. slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/identity_tag.hpp +21 -0
  867. slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/is_sax.hpp +159 -0
  868. slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/logic.hpp +54 -0
  869. slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/std_fs.hpp +29 -0
  870. slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/type_traits.hpp +861 -0
  871. slughorn-0.0.2/ext/json/include/nlohmann/detail/meta/void_t.hpp +24 -0
  872. slughorn-0.0.2/ext/json/include/nlohmann/detail/output/binary_writer.hpp +1863 -0
  873. slughorn-0.0.2/ext/json/include/nlohmann/detail/output/output_adapters.hpp +147 -0
  874. slughorn-0.0.2/ext/json/include/nlohmann/detail/output/serializer.hpp +988 -0
  875. slughorn-0.0.2/ext/json/include/nlohmann/detail/string_concat.hpp +146 -0
  876. slughorn-0.0.2/ext/json/include/nlohmann/detail/string_escape.hpp +72 -0
  877. slughorn-0.0.2/ext/json/include/nlohmann/detail/string_utils.hpp +37 -0
  878. slughorn-0.0.2/ext/json/include/nlohmann/detail/value_t.hpp +118 -0
  879. slughorn-0.0.2/ext/json/include/nlohmann/json.hpp +5386 -0
  880. slughorn-0.0.2/ext/json/include/nlohmann/json_fwd.hpp +75 -0
  881. slughorn-0.0.2/ext/json/include/nlohmann/ordered_map.hpp +359 -0
  882. slughorn-0.0.2/ext/json/include/nlohmann/thirdparty/hedley/hedley.hpp +2046 -0
  883. slughorn-0.0.2/ext/json/include/nlohmann/thirdparty/hedley/hedley_undef.hpp +158 -0
  884. slughorn-0.0.2/ext/json/meson.build +24 -0
  885. slughorn-0.0.2/ext/json/nlohmann_json.natvis +278 -0
  886. slughorn-0.0.2/ext/json/single_include/nlohmann/json.hpp +25830 -0
  887. slughorn-0.0.2/ext/json/single_include/nlohmann/json_fwd.hpp +187 -0
  888. slughorn-0.0.2/ext/json/src/modules/CMakeLists.txt +27 -0
  889. slughorn-0.0.2/ext/json/src/modules/json.cppm +32 -0
  890. slughorn-0.0.2/ext/json/tests/CMakeLists.txt +197 -0
  891. slughorn-0.0.2/ext/json/tests/Makefile +32 -0
  892. slughorn-0.0.2/ext/json/tests/abi/CMakeLists.txt +30 -0
  893. slughorn-0.0.2/ext/json/tests/abi/config/CMakeLists.txt +22 -0
  894. slughorn-0.0.2/ext/json/tests/abi/config/config.hpp +35 -0
  895. slughorn-0.0.2/ext/json/tests/abi/config/custom.cpp +33 -0
  896. slughorn-0.0.2/ext/json/tests/abi/config/default.cpp +45 -0
  897. slughorn-0.0.2/ext/json/tests/abi/config/noversion.cpp +44 -0
  898. slughorn-0.0.2/ext/json/tests/abi/diag/CMakeLists.txt +19 -0
  899. slughorn-0.0.2/ext/json/tests/abi/diag/diag.cpp +29 -0
  900. slughorn-0.0.2/ext/json/tests/abi/diag/diag.hpp +20 -0
  901. slughorn-0.0.2/ext/json/tests/abi/diag/diag_off.cpp +30 -0
  902. slughorn-0.0.2/ext/json/tests/abi/diag/diag_on.cpp +30 -0
  903. slughorn-0.0.2/ext/json/tests/abi/include/nlohmann/json_v3_10_5.hpp +22091 -0
  904. slughorn-0.0.2/ext/json/tests/abi/inline_ns/CMakeLists.txt +12 -0
  905. slughorn-0.0.2/ext/json/tests/abi/inline_ns/use_current.cpp +36 -0
  906. slughorn-0.0.2/ext/json/tests/abi/inline_ns/use_v3_10_5.cpp +22 -0
  907. slughorn-0.0.2/ext/json/tests/abi/main.cpp +10 -0
  908. slughorn-0.0.2/ext/json/tests/benchmarks/CMakeLists.txt +34 -0
  909. slughorn-0.0.2/ext/json/tests/benchmarks/src/benchmarks.cpp +217 -0
  910. slughorn-0.0.2/ext/json/tests/cmake_add_subdirectory/CMakeLists.txt +19 -0
  911. slughorn-0.0.2/ext/json/tests/cmake_add_subdirectory/project/CMakeLists.txt +24 -0
  912. slughorn-0.0.2/ext/json/tests/cmake_add_subdirectory/project/main.cpp +16 -0
  913. slughorn-0.0.2/ext/json/tests/cmake_fetch_content/CMakeLists.txt +21 -0
  914. slughorn-0.0.2/ext/json/tests/cmake_fetch_content/project/CMakeLists.txt +24 -0
  915. slughorn-0.0.2/ext/json/tests/cmake_fetch_content/project/main.cpp +16 -0
  916. slughorn-0.0.2/ext/json/tests/cmake_fetch_content2/CMakeLists.txt +21 -0
  917. slughorn-0.0.2/ext/json/tests/cmake_fetch_content2/project/CMakeLists.txt +19 -0
  918. slughorn-0.0.2/ext/json/tests/cmake_fetch_content2/project/main.cpp +16 -0
  919. slughorn-0.0.2/ext/json/tests/cmake_import/CMakeLists.txt +20 -0
  920. slughorn-0.0.2/ext/json/tests/cmake_import/project/CMakeLists.txt +15 -0
  921. slughorn-0.0.2/ext/json/tests/cmake_import/project/main.cpp +16 -0
  922. slughorn-0.0.2/ext/json/tests/cmake_import_minver/CMakeLists.txt +20 -0
  923. slughorn-0.0.2/ext/json/tests/cmake_import_minver/project/CMakeLists.txt +12 -0
  924. slughorn-0.0.2/ext/json/tests/cmake_import_minver/project/main.cpp +16 -0
  925. slughorn-0.0.2/ext/json/tests/cmake_target_include_directories/CMakeLists.txt +19 -0
  926. slughorn-0.0.2/ext/json/tests/cmake_target_include_directories/project/Bar.cpp +11 -0
  927. slughorn-0.0.2/ext/json/tests/cmake_target_include_directories/project/Bar.hpp +12 -0
  928. slughorn-0.0.2/ext/json/tests/cmake_target_include_directories/project/CMakeLists.txt +25 -0
  929. slughorn-0.0.2/ext/json/tests/cmake_target_include_directories/project/Foo.cpp +11 -0
  930. slughorn-0.0.2/ext/json/tests/cmake_target_include_directories/project/Foo.hpp +12 -0
  931. slughorn-0.0.2/ext/json/tests/cmake_target_include_directories/project/main.cpp +16 -0
  932. slughorn-0.0.2/ext/json/tests/cuda_example/CMakeLists.txt +10 -0
  933. slughorn-0.0.2/ext/json/tests/cuda_example/json_cuda.cu +19 -0
  934. slughorn-0.0.2/ext/json/tests/fuzzing.md +81 -0
  935. slughorn-0.0.2/ext/json/tests/module_cpp20/CMakeLists.txt +19 -0
  936. slughorn-0.0.2/ext/json/tests/module_cpp20/main.cpp +14 -0
  937. slughorn-0.0.2/ext/json/tests/reports/2016-08-29-fuzz/exec_speed.png +0 -0
  938. slughorn-0.0.2/ext/json/tests/reports/2016-08-29-fuzz/fuzz.tiff +0 -0
  939. slughorn-0.0.2/ext/json/tests/reports/2016-08-29-fuzz/high_freq.png +0 -0
  940. slughorn-0.0.2/ext/json/tests/reports/2016-08-29-fuzz/index.html +10 -0
  941. slughorn-0.0.2/ext/json/tests/reports/2016-08-29-fuzz/low_freq.png +0 -0
  942. slughorn-0.0.2/ext/json/tests/reports/2016-09-09-nativejson_benchmark/README.md +31 -0
  943. slughorn-0.0.2/ext/json/tests/reports/2016-09-09-nativejson_benchmark/conformance_Nlohmann (C++11).md +670 -0
  944. slughorn-0.0.2/ext/json/tests/reports/2016-09-09-nativejson_benchmark/conformance_overall_Result.png +0 -0
  945. 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
  946. 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
  947. 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
  948. 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
  949. 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
  950. slughorn-0.0.2/ext/json/tests/reports/2016-10-02-fuzz/exec_speed.png +0 -0
  951. slughorn-0.0.2/ext/json/tests/reports/2016-10-02-fuzz/fuzz.tiff +0 -0
  952. slughorn-0.0.2/ext/json/tests/reports/2016-10-02-fuzz/high_freq.png +0 -0
  953. slughorn-0.0.2/ext/json/tests/reports/2016-10-02-fuzz/index.html +10 -0
  954. slughorn-0.0.2/ext/json/tests/reports/2016-10-02-fuzz/low_freq.png +0 -0
  955. slughorn-0.0.2/ext/json/tests/src/fuzzer-driver_afl.cpp +39 -0
  956. slughorn-0.0.2/ext/json/tests/src/fuzzer-parse_bjdata.cpp +85 -0
  957. slughorn-0.0.2/ext/json/tests/src/fuzzer-parse_bson.cpp +74 -0
  958. slughorn-0.0.2/ext/json/tests/src/fuzzer-parse_cbor.cpp +69 -0
  959. slughorn-0.0.2/ext/json/tests/src/fuzzer-parse_json.cpp +70 -0
  960. slughorn-0.0.2/ext/json/tests/src/fuzzer-parse_msgpack.cpp +69 -0
  961. slughorn-0.0.2/ext/json/tests/src/fuzzer-parse_ubjson.cpp +85 -0
  962. slughorn-0.0.2/ext/json/tests/src/make_test_data_available.hpp +31 -0
  963. slughorn-0.0.2/ext/json/tests/src/test_utils.hpp +33 -0
  964. slughorn-0.0.2/ext/json/tests/src/unit-32bit.cpp +134 -0
  965. slughorn-0.0.2/ext/json/tests/src/unit-algorithms.cpp +365 -0
  966. slughorn-0.0.2/ext/json/tests/src/unit-allocator.cpp +263 -0
  967. slughorn-0.0.2/ext/json/tests/src/unit-alt-string.cpp +370 -0
  968. slughorn-0.0.2/ext/json/tests/src/unit-assert_macro.cpp +48 -0
  969. slughorn-0.0.2/ext/json/tests/src/unit-binary_formats.cpp +211 -0
  970. slughorn-0.0.2/ext/json/tests/src/unit-bjdata.cpp +3838 -0
  971. slughorn-0.0.2/ext/json/tests/src/unit-bson.cpp +1296 -0
  972. slughorn-0.0.2/ext/json/tests/src/unit-byte_container_with_subtype.cpp +76 -0
  973. slughorn-0.0.2/ext/json/tests/src/unit-capacity.cpp +542 -0
  974. slughorn-0.0.2/ext/json/tests/src/unit-cbor.cpp +2780 -0
  975. slughorn-0.0.2/ext/json/tests/src/unit-class_const_iterator.cpp +393 -0
  976. slughorn-0.0.2/ext/json/tests/src/unit-class_iterator.cpp +468 -0
  977. slughorn-0.0.2/ext/json/tests/src/unit-class_lexer.cpp +226 -0
  978. slughorn-0.0.2/ext/json/tests/src/unit-class_parser.cpp +1754 -0
  979. slughorn-0.0.2/ext/json/tests/src/unit-class_parser_diagnostic_positions.cpp +1957 -0
  980. slughorn-0.0.2/ext/json/tests/src/unit-comparison.cpp +596 -0
  981. slughorn-0.0.2/ext/json/tests/src/unit-concepts.cpp +149 -0
  982. slughorn-0.0.2/ext/json/tests/src/unit-constructor1.cpp +1654 -0
  983. slughorn-0.0.2/ext/json/tests/src/unit-constructor2.cpp +186 -0
  984. slughorn-0.0.2/ext/json/tests/src/unit-convenience.cpp +205 -0
  985. slughorn-0.0.2/ext/json/tests/src/unit-conversions.cpp +1753 -0
  986. slughorn-0.0.2/ext/json/tests/src/unit-custom-base-class.cpp +335 -0
  987. slughorn-0.0.2/ext/json/tests/src/unit-deserialization.cpp +1236 -0
  988. slughorn-0.0.2/ext/json/tests/src/unit-diagnostic-positions-only.cpp +44 -0
  989. slughorn-0.0.2/ext/json/tests/src/unit-diagnostic-positions.cpp +40 -0
  990. slughorn-0.0.2/ext/json/tests/src/unit-diagnostics.cpp +265 -0
  991. slughorn-0.0.2/ext/json/tests/src/unit-disabled_exceptions.cpp +51 -0
  992. slughorn-0.0.2/ext/json/tests/src/unit-element_access1.cpp +880 -0
  993. slughorn-0.0.2/ext/json/tests/src/unit-element_access2.cpp +1844 -0
  994. slughorn-0.0.2/ext/json/tests/src/unit-hash.cpp +113 -0
  995. slughorn-0.0.2/ext/json/tests/src/unit-inspection.cpp +459 -0
  996. slughorn-0.0.2/ext/json/tests/src/unit-items.cpp +1433 -0
  997. slughorn-0.0.2/ext/json/tests/src/unit-iterators1.cpp +1630 -0
  998. slughorn-0.0.2/ext/json/tests/src/unit-iterators2.cpp +972 -0
  999. slughorn-0.0.2/ext/json/tests/src/unit-iterators3.cpp +35 -0
  1000. slughorn-0.0.2/ext/json/tests/src/unit-json_patch.cpp +1336 -0
  1001. slughorn-0.0.2/ext/json/tests/src/unit-json_pointer.cpp +805 -0
  1002. slughorn-0.0.2/ext/json/tests/src/unit-large_json.cpp +29 -0
  1003. slughorn-0.0.2/ext/json/tests/src/unit-locale-cpp.cpp +166 -0
  1004. slughorn-0.0.2/ext/json/tests/src/unit-merge_patch.cpp +244 -0
  1005. slughorn-0.0.2/ext/json/tests/src/unit-meta.cpp +36 -0
  1006. slughorn-0.0.2/ext/json/tests/src/unit-modifiers.cpp +952 -0
  1007. slughorn-0.0.2/ext/json/tests/src/unit-msgpack.cpp +1961 -0
  1008. slughorn-0.0.2/ext/json/tests/src/unit-no-mem-leak-on-adl-serialize.cpp +86 -0
  1009. slughorn-0.0.2/ext/json/tests/src/unit-noexcept.cpp +83 -0
  1010. slughorn-0.0.2/ext/json/tests/src/unit-ordered_json.cpp +71 -0
  1011. slughorn-0.0.2/ext/json/tests/src/unit-ordered_map.cpp +310 -0
  1012. slughorn-0.0.2/ext/json/tests/src/unit-pointer_access.cpp +479 -0
  1013. slughorn-0.0.2/ext/json/tests/src/unit-readme.cpp +304 -0
  1014. slughorn-0.0.2/ext/json/tests/src/unit-reference_access.cpp +247 -0
  1015. slughorn-0.0.2/ext/json/tests/src/unit-regression1.cpp +1530 -0
  1016. slughorn-0.0.2/ext/json/tests/src/unit-regression2.cpp +1206 -0
  1017. slughorn-0.0.2/ext/json/tests/src/unit-serialization.cpp +297 -0
  1018. slughorn-0.0.2/ext/json/tests/src/unit-testsuites.cpp +1392 -0
  1019. slughorn-0.0.2/ext/json/tests/src/unit-to_chars.cpp +516 -0
  1020. slughorn-0.0.2/ext/json/tests/src/unit-type_traits.cpp +56 -0
  1021. slughorn-0.0.2/ext/json/tests/src/unit-ubjson.cpp +2547 -0
  1022. slughorn-0.0.2/ext/json/tests/src/unit-udl.cpp +57 -0
  1023. slughorn-0.0.2/ext/json/tests/src/unit-udt.cpp +908 -0
  1024. slughorn-0.0.2/ext/json/tests/src/unit-udt_macro.cpp +709 -0
  1025. slughorn-0.0.2/ext/json/tests/src/unit-unicode1.cpp +620 -0
  1026. slughorn-0.0.2/ext/json/tests/src/unit-unicode2.cpp +610 -0
  1027. slughorn-0.0.2/ext/json/tests/src/unit-unicode3.cpp +324 -0
  1028. slughorn-0.0.2/ext/json/tests/src/unit-unicode4.cpp +324 -0
  1029. slughorn-0.0.2/ext/json/tests/src/unit-unicode5.cpp +324 -0
  1030. slughorn-0.0.2/ext/json/tests/src/unit-user_defined_input.cpp +130 -0
  1031. slughorn-0.0.2/ext/json/tests/src/unit-windows_h.cpp +23 -0
  1032. slughorn-0.0.2/ext/json/tests/src/unit-wstring.cpp +99 -0
  1033. slughorn-0.0.2/ext/json/tests/src/unit.cpp +10 -0
  1034. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/CMakeLists.txt +45 -0
  1035. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerCorpus.h +217 -0
  1036. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerCrossOver.cpp +52 -0
  1037. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerDefs.h +89 -0
  1038. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerDictionary.h +124 -0
  1039. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerDriver.cpp +545 -0
  1040. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerExtFunctions.def +50 -0
  1041. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerExtFunctions.h +35 -0
  1042. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerExtFunctionsDlsym.cpp +52 -0
  1043. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerExtFunctionsWeak.cpp +53 -0
  1044. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerExtFunctionsWeakAlias.cpp +56 -0
  1045. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerFlags.def +115 -0
  1046. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerIO.cpp +117 -0
  1047. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerIO.h +64 -0
  1048. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerIOPosix.cpp +88 -0
  1049. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerIOWindows.cpp +282 -0
  1050. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerInterface.h +67 -0
  1051. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerInternal.h +182 -0
  1052. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerLoop.cpp +792 -0
  1053. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerMain.cpp +21 -0
  1054. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerMerge.cpp +261 -0
  1055. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerMerge.h +70 -0
  1056. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerMutate.cpp +527 -0
  1057. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerMutate.h +145 -0
  1058. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerOptions.h +68 -0
  1059. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerRandom.h +36 -0
  1060. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerSHA1.cpp +222 -0
  1061. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerSHA1.h +33 -0
  1062. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerTracePC.cpp +339 -0
  1063. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerTracePC.h +158 -0
  1064. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerTraceState.cpp +325 -0
  1065. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerUtil.cpp +218 -0
  1066. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerUtil.h +72 -0
  1067. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerUtilDarwin.cpp +152 -0
  1068. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerUtilLinux.cpp +24 -0
  1069. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerUtilPosix.cpp +117 -0
  1070. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerUtilWindows.cpp +182 -0
  1071. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/FuzzerValueBitMap.h +87 -0
  1072. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/README.txt +2 -0
  1073. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/afl/afl_driver.cpp +295 -0
  1074. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/build.sh +10 -0
  1075. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/cxx.dict +122 -0
  1076. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/standalone/StandaloneFuzzTargetMain.c +41 -0
  1077. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/AFLDriverTest.cpp +22 -0
  1078. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/AbsNegAndConstant64Test.cpp +23 -0
  1079. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/AbsNegAndConstantTest.cpp +23 -0
  1080. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/AccumulateAllocationsTest.cpp +17 -0
  1081. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/BufferOverflowOnInput.cpp +23 -0
  1082. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/CMakeLists.txt +217 -0
  1083. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/CallerCalleeTest.cpp +59 -0
  1084. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/CounterTest.cpp +18 -0
  1085. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/CustomCrossOverTest.cpp +63 -0
  1086. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/CustomMutatorTest.cpp +38 -0
  1087. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/DSO1.cpp +12 -0
  1088. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/DSO2.cpp +12 -0
  1089. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/DSOTestExtra.cpp +11 -0
  1090. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/DSOTestMain.cpp +31 -0
  1091. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/DivTest.cpp +20 -0
  1092. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/EmptyTest.cpp +11 -0
  1093. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/FourIndependentBranchesTest.cpp +22 -0
  1094. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/FullCoverageSetTest.cpp +24 -0
  1095. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/FuzzerUnittest.cpp +738 -0
  1096. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/InitializeTest.cpp +28 -0
  1097. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/LeakTest.cpp +17 -0
  1098. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/LeakTimeoutTest.cpp +17 -0
  1099. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/LoadTest.cpp +22 -0
  1100. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/MemcmpTest.cpp +31 -0
  1101. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/NthRunCrashTest.cpp +18 -0
  1102. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/NullDerefOnEmptyTest.cpp +19 -0
  1103. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/NullDerefTest.cpp +26 -0
  1104. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/OneHugeAllocTest.cpp +28 -0
  1105. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/OutOfMemorySingleLargeMallocTest.cpp +27 -0
  1106. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/OutOfMemoryTest.cpp +31 -0
  1107. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/RepeatedBytesTest.cpp +29 -0
  1108. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/RepeatedMemcmp.cpp +22 -0
  1109. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/ShrinkControlFlowTest.cpp +28 -0
  1110. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/ShrinkValueProfileTest.cpp +22 -0
  1111. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SignedIntOverflowTest.cpp +28 -0
  1112. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SimpleCmpTest.cpp +46 -0
  1113. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SimpleDictionaryTest.cpp +29 -0
  1114. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SimpleHashTest.cpp +40 -0
  1115. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SimpleTest.cpp +27 -0
  1116. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SimpleThreadedTest.cpp +25 -0
  1117. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SingleMemcmpTest.cpp +17 -0
  1118. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SingleStrcmpTest.cpp +17 -0
  1119. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SingleStrncmpTest.cpp +17 -0
  1120. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SpamyTest.cpp +21 -0
  1121. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/StrcmpTest.cpp +32 -0
  1122. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/StrncmpOOBTest.cpp +21 -0
  1123. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/StrncmpTest.cpp +28 -0
  1124. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/StrstrTest.cpp +28 -0
  1125. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SwapCmpTest.cpp +34 -0
  1126. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/Switch2Test.cpp +35 -0
  1127. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/SwitchTest.cpp +58 -0
  1128. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/ThreadedLeakTest.cpp +18 -0
  1129. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/ThreadedTest.cpp +26 -0
  1130. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/TimeoutEmptyTest.cpp +14 -0
  1131. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/TimeoutTest.cpp +26 -0
  1132. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/TraceMallocTest.cpp +27 -0
  1133. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/UninstrumentedTest.cpp +11 -0
  1134. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/afl-driver-extra-stats.test +28 -0
  1135. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/afl-driver-stderr.test +10 -0
  1136. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/caller-callee.test +2 -0
  1137. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/coverage.test +19 -0
  1138. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/dict1.txt +4 -0
  1139. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/dump_coverage.test +16 -0
  1140. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-customcrossover.test +10 -0
  1141. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-custommutator.test +4 -0
  1142. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-dict.test +6 -0
  1143. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-dirs.test +15 -0
  1144. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-fdmask.test +30 -0
  1145. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-finalstats.test +11 -0
  1146. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-flags.test +10 -0
  1147. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-jobs.test +29 -0
  1148. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-leak.test +35 -0
  1149. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-oom-with-profile.test +6 -0
  1150. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-oom.test +11 -0
  1151. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-printcovpcs.test +8 -0
  1152. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-runs.test +8 -0
  1153. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-seed.test +3 -0
  1154. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-segv.test +5 -0
  1155. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-singleinputs.test +16 -0
  1156. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-threaded.test +7 -0
  1157. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-timeout.test +19 -0
  1158. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-traces-hooks.test +25 -0
  1159. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer-ubsan.test +4 -0
  1160. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/fuzzer.test +57 -0
  1161. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/hi.txt +1 -0
  1162. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/lit.cfg +29 -0
  1163. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/lit.site.cfg.in +4 -0
  1164. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/merge.test +46 -0
  1165. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/minimize_crash.test +6 -0
  1166. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/no-coverage/CMakeLists.txt +29 -0
  1167. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/repeated-bytes.test +2 -0
  1168. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/shrink.test +7 -0
  1169. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/simple-cmp.test +2 -0
  1170. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/standalone.test +4 -0
  1171. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/swap-cmp.test +2 -0
  1172. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/trace-malloc.test +10 -0
  1173. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/ubsan/CMakeLists.txt +15 -0
  1174. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/ulimit.test +2 -0
  1175. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/uninstrumented/CMakeLists.txt +16 -0
  1176. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/unit/lit.cfg +7 -0
  1177. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/unit/lit.site.cfg.in +2 -0
  1178. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-cmp.test +2 -0
  1179. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-cmp2.test +2 -0
  1180. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-cmp3.test +2 -0
  1181. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-cmp4.test +2 -0
  1182. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-div.test +3 -0
  1183. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-load.test +3 -0
  1184. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-mem.test +2 -0
  1185. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-set.test +3 -0
  1186. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-strcmp.test +2 -0
  1187. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-strncmp.test +2 -0
  1188. slughorn-0.0.2/ext/json/tests/thirdparty/Fuzzer/test/value-profile-switch.test +3 -0
  1189. slughorn-0.0.2/ext/json/tests/thirdparty/doctest/doctest.h +7135 -0
  1190. slughorn-0.0.2/ext/json/tests/thirdparty/doctest/doctest_compatibility.h +37 -0
  1191. slughorn-0.0.2/ext/json/tests/thirdparty/fifo_map/fifo_map.hpp +530 -0
  1192. slughorn-0.0.2/ext/json/tests/thirdparty/imapdl/filterbr.py +111 -0
  1193. slughorn-0.0.2/ext/json/tools/amalgamate/CHANGES.md +10 -0
  1194. slughorn-0.0.2/ext/json/tools/amalgamate/README.md +65 -0
  1195. slughorn-0.0.2/ext/json/tools/amalgamate/amalgamate.py +299 -0
  1196. slughorn-0.0.2/ext/json/tools/amalgamate/config_json.json +8 -0
  1197. slughorn-0.0.2/ext/json/tools/amalgamate/config_json_fwd.json +8 -0
  1198. slughorn-0.0.2/ext/json/tools/astyle/.astylerc +80 -0
  1199. slughorn-0.0.2/ext/json/tools/astyle/requirements.txt +1 -0
  1200. slughorn-0.0.2/ext/json/tools/gdb_pretty_printer/README.md +79 -0
  1201. slughorn-0.0.2/ext/json/tools/gdb_pretty_printer/nlohmann-json.py +35 -0
  1202. slughorn-0.0.2/ext/json/tools/generate_natvis/README.md +9 -0
  1203. slughorn-0.0.2/ext/json/tools/generate_natvis/generate_natvis.py +41 -0
  1204. slughorn-0.0.2/ext/json/tools/generate_natvis/nlohmann_json.natvis.j2 +40 -0
  1205. slughorn-0.0.2/ext/json/tools/generate_natvis/requirements.txt +1 -0
  1206. slughorn-0.0.2/ext/json/tools/macro_builder/main.cpp +43 -0
  1207. slughorn-0.0.2/ext/json/tools/serve_header/README.md +91 -0
  1208. slughorn-0.0.2/ext/json/tools/serve_header/demo.png +0 -0
  1209. slughorn-0.0.2/ext/json/tools/serve_header/requirements.txt +2 -0
  1210. slughorn-0.0.2/ext/json/tools/serve_header/serve_header.py +416 -0
  1211. slughorn-0.0.2/ext/json/tools/serve_header/serve_header.yml.example +15 -0
  1212. slughorn-0.0.2/ext/logo-light.svg +28 -0
  1213. slughorn-0.0.2/ext/logo.svg +28 -0
  1214. slughorn-0.0.2/ext/msdfgen/.gitattributes +1 -0
  1215. slughorn-0.0.2/ext/msdfgen/.gitignore +32 -0
  1216. slughorn-0.0.2/ext/msdfgen/CHANGELOG.md +153 -0
  1217. slughorn-0.0.2/ext/msdfgen/CMakeLists.txt +344 -0
  1218. slughorn-0.0.2/ext/msdfgen/CMakePresets.json +285 -0
  1219. slughorn-0.0.2/ext/msdfgen/LICENSE.txt +21 -0
  1220. slughorn-0.0.2/ext/msdfgen/README.md +220 -0
  1221. slughorn-0.0.2/ext/msdfgen/build-release.bat +96 -0
  1222. slughorn-0.0.2/ext/msdfgen/cmake/CMakePresets.json +178 -0
  1223. slughorn-0.0.2/ext/msdfgen/cmake/msdfgen-config.h.in +12 -0
  1224. slughorn-0.0.2/ext/msdfgen/cmake/msdfgenConfig.cmake.in +58 -0
  1225. slughorn-0.0.2/ext/msdfgen/cmake/version.cmake +19 -0
  1226. slughorn-0.0.2/ext/msdfgen/core/Bitmap.h +60 -0
  1227. slughorn-0.0.2/ext/msdfgen/core/Bitmap.hpp +172 -0
  1228. slughorn-0.0.2/ext/msdfgen/core/BitmapRef.hpp +169 -0
  1229. slughorn-0.0.2/ext/msdfgen/core/Contour.cpp +90 -0
  1230. slughorn-0.0.2/ext/msdfgen/core/Contour.h +34 -0
  1231. slughorn-0.0.2/ext/msdfgen/core/DistanceMapping.cpp +27 -0
  1232. slughorn-0.0.2/ext/msdfgen/core/DistanceMapping.h +36 -0
  1233. slughorn-0.0.2/ext/msdfgen/core/EdgeColor.h +20 -0
  1234. slughorn-0.0.2/ext/msdfgen/core/EdgeHolder.cpp +67 -0
  1235. slughorn-0.0.2/ext/msdfgen/core/EdgeHolder.h +41 -0
  1236. slughorn-0.0.2/ext/msdfgen/core/MSDFErrorCorrection.cpp +496 -0
  1237. slughorn-0.0.2/ext/msdfgen/core/MSDFErrorCorrection.h +55 -0
  1238. slughorn-0.0.2/ext/msdfgen/core/Projection.cpp +42 -0
  1239. slughorn-0.0.2/ext/msdfgen/core/Projection.h +37 -0
  1240. slughorn-0.0.2/ext/msdfgen/core/Range.hpp +46 -0
  1241. slughorn-0.0.2/ext/msdfgen/core/SDFTransformation.h +24 -0
  1242. slughorn-0.0.2/ext/msdfgen/core/Scanline.cpp +125 -0
  1243. slughorn-0.0.2/ext/msdfgen/core/Scanline.h +56 -0
  1244. slughorn-0.0.2/ext/msdfgen/core/Shape.cpp +208 -0
  1245. slughorn-0.0.2/ext/msdfgen/core/Shape.h +60 -0
  1246. slughorn-0.0.2/ext/msdfgen/core/ShapeDistanceFinder.h +37 -0
  1247. slughorn-0.0.2/ext/msdfgen/core/ShapeDistanceFinder.hpp +60 -0
  1248. slughorn-0.0.2/ext/msdfgen/core/SignedDistance.hpp +38 -0
  1249. slughorn-0.0.2/ext/msdfgen/core/Vector2.hpp +167 -0
  1250. slughorn-0.0.2/ext/msdfgen/core/YAxisOrientation.h +17 -0
  1251. slughorn-0.0.2/ext/msdfgen/core/arithmetics.hpp +63 -0
  1252. slughorn-0.0.2/ext/msdfgen/core/base.h +16 -0
  1253. slughorn-0.0.2/ext/msdfgen/core/bitmap-interpolation.hpp +27 -0
  1254. slughorn-0.0.2/ext/msdfgen/core/contour-combiners.cpp +141 -0
  1255. slughorn-0.0.2/ext/msdfgen/core/contour-combiners.h +47 -0
  1256. slughorn-0.0.2/ext/msdfgen/core/convergent-curve-ordering.cpp +140 -0
  1257. slughorn-0.0.2/ext/msdfgen/core/convergent-curve-ordering.h +11 -0
  1258. slughorn-0.0.2/ext/msdfgen/core/edge-coloring.cpp +531 -0
  1259. slughorn-0.0.2/ext/msdfgen/core/edge-coloring.h +29 -0
  1260. slughorn-0.0.2/ext/msdfgen/core/edge-segments.cpp +533 -0
  1261. slughorn-0.0.2/ext/msdfgen/core/edge-segments.h +146 -0
  1262. slughorn-0.0.2/ext/msdfgen/core/edge-selectors.cpp +262 -0
  1263. slughorn-0.0.2/ext/msdfgen/core/edge-selectors.h +117 -0
  1264. slughorn-0.0.2/ext/msdfgen/core/equation-solver.cpp +72 -0
  1265. slughorn-0.0.2/ext/msdfgen/core/equation-solver.h +14 -0
  1266. slughorn-0.0.2/ext/msdfgen/core/export-svg.cpp +79 -0
  1267. slughorn-0.0.2/ext/msdfgen/core/export-svg.h +11 -0
  1268. slughorn-0.0.2/ext/msdfgen/core/generator-config.h +66 -0
  1269. slughorn-0.0.2/ext/msdfgen/core/msdf-error-correction.cpp +183 -0
  1270. slughorn-0.0.2/ext/msdfgen/core/msdf-error-correction.h +40 -0
  1271. slughorn-0.0.2/ext/msdfgen/core/msdfgen.cpp +335 -0
  1272. slughorn-0.0.2/ext/msdfgen/core/pixel-conversion.hpp +16 -0
  1273. slughorn-0.0.2/ext/msdfgen/core/rasterization.cpp +128 -0
  1274. slughorn-0.0.2/ext/msdfgen/core/rasterization.h +28 -0
  1275. slughorn-0.0.2/ext/msdfgen/core/render-sdf.cpp +194 -0
  1276. slughorn-0.0.2/ext/msdfgen/core/render-sdf.h +23 -0
  1277. slughorn-0.0.2/ext/msdfgen/core/save-bmp.cpp +233 -0
  1278. slughorn-0.0.2/ext/msdfgen/core/save-bmp.h +16 -0
  1279. slughorn-0.0.2/ext/msdfgen/core/save-fl32.cpp +41 -0
  1280. slughorn-0.0.2/ext/msdfgen/core/save-fl32.h +12 -0
  1281. slughorn-0.0.2/ext/msdfgen/core/save-rgba.cpp +139 -0
  1282. slughorn-0.0.2/ext/msdfgen/core/save-rgba.h +16 -0
  1283. slughorn-0.0.2/ext/msdfgen/core/save-tiff.cpp +195 -0
  1284. slughorn-0.0.2/ext/msdfgen/core/save-tiff.h +13 -0
  1285. slughorn-0.0.2/ext/msdfgen/core/sdf-error-estimation.cpp +204 -0
  1286. slughorn-0.0.2/ext/msdfgen/core/sdf-error-estimation.h +33 -0
  1287. slughorn-0.0.2/ext/msdfgen/core/shape-description.cpp +335 -0
  1288. slughorn-0.0.2/ext/msdfgen/core/shape-description.h +15 -0
  1289. slughorn-0.0.2/ext/msdfgen/ext/import-font.cpp +360 -0
  1290. slughorn-0.0.2/ext/msdfgen/ext/import-font.h +111 -0
  1291. slughorn-0.0.2/ext/msdfgen/ext/import-svg.cpp +1073 -0
  1292. slughorn-0.0.2/ext/msdfgen/ext/import-svg.h +32 -0
  1293. slughorn-0.0.2/ext/msdfgen/ext/resolve-shape-geometry.cpp +133 -0
  1294. slughorn-0.0.2/ext/msdfgen/ext/resolve-shape-geometry.h +15 -0
  1295. slughorn-0.0.2/ext/msdfgen/ext/save-png.cpp +195 -0
  1296. slughorn-0.0.2/ext/msdfgen/ext/save-png.h +20 -0
  1297. slughorn-0.0.2/ext/msdfgen/icon.ico +0 -0
  1298. slughorn-0.0.2/ext/msdfgen/main.cpp +1451 -0
  1299. slughorn-0.0.2/ext/msdfgen/msdfgen-ext.h +27 -0
  1300. slughorn-0.0.2/ext/msdfgen/msdfgen.h +78 -0
  1301. slughorn-0.0.2/ext/msdfgen/msdfgen.rc +0 -0
  1302. slughorn-0.0.2/ext/msdfgen/resource.h +0 -0
  1303. slughorn-0.0.2/ext/msdfgen/vcpkg.json +38 -0
  1304. slughorn-0.0.2/ext/nanosvg/.gitignore +31 -0
  1305. slughorn-0.0.2/ext/nanosvg/CMakeLists.txt +75 -0
  1306. slughorn-0.0.2/ext/nanosvg/Config.cmake.in +5 -0
  1307. slughorn-0.0.2/ext/nanosvg/LICENSE.txt +18 -0
  1308. slughorn-0.0.2/ext/nanosvg/README.md +112 -0
  1309. slughorn-0.0.2/ext/nanosvg/example/23.svg +730 -0
  1310. slughorn-0.0.2/ext/nanosvg/example/drawing.svg +97 -0
  1311. slughorn-0.0.2/ext/nanosvg/example/example1.c +258 -0
  1312. slughorn-0.0.2/ext/nanosvg/example/example2.c +69 -0
  1313. slughorn-0.0.2/ext/nanosvg/example/nano.svg +27 -0
  1314. slughorn-0.0.2/ext/nanosvg/example/screenshot-1.png +0 -0
  1315. slughorn-0.0.2/ext/nanosvg/example/screenshot-2.png +0 -0
  1316. slughorn-0.0.2/ext/nanosvg/example/stb_image_write.h +511 -0
  1317. slughorn-0.0.2/ext/nanosvg/premake4.lua +56 -0
  1318. slughorn-0.0.2/ext/nanosvg/src/nanosvg.h +3132 -0
  1319. slughorn-0.0.2/ext/nanosvg/src/nanosvgrast.h +1472 -0
  1320. slughorn-0.0.2/ext/nanosvg-00-gradient-units-field.diff +20 -0
  1321. slughorn-0.0.2/ext/nanosvg-01-push-attr-id-inherit.diff +11 -0
  1322. slughorn-0.0.2/ext/nanosvg-02-obb-linear-gradient-coords.diff +42 -0
  1323. slughorn-0.0.2/ext/pybind11/.appveyor.yml +35 -0
  1324. slughorn-0.0.2/ext/pybind11/.clang-format +38 -0
  1325. slughorn-0.0.2/ext/pybind11/.clang-tidy +83 -0
  1326. slughorn-0.0.2/ext/pybind11/.cmake-format.yaml +73 -0
  1327. slughorn-0.0.2/ext/pybind11/.codespell-ignore-lines +36 -0
  1328. slughorn-0.0.2/ext/pybind11/.gitattributes +1 -0
  1329. slughorn-0.0.2/ext/pybind11/.github/CODEOWNERS +9 -0
  1330. slughorn-0.0.2/ext/pybind11/.github/CONTRIBUTING.md +349 -0
  1331. slughorn-0.0.2/ext/pybind11/.github/ISSUE_TEMPLATE/bug-report.yml +61 -0
  1332. slughorn-0.0.2/ext/pybind11/.github/ISSUE_TEMPLATE/config.yml +8 -0
  1333. slughorn-0.0.2/ext/pybind11/.github/dependabot.yml +11 -0
  1334. slughorn-0.0.2/ext/pybind11/.github/labeler.yml +13 -0
  1335. slughorn-0.0.2/ext/pybind11/.github/labeler_merged.yml +8 -0
  1336. slughorn-0.0.2/ext/pybind11/.github/matchers/pylint.json +32 -0
  1337. slughorn-0.0.2/ext/pybind11/.github/pull_request_template.md +15 -0
  1338. slughorn-0.0.2/ext/pybind11/.github/workflows/ci.yml +1369 -0
  1339. slughorn-0.0.2/ext/pybind11/.github/workflows/configure.yml +85 -0
  1340. slughorn-0.0.2/ext/pybind11/.github/workflows/docs-link.yml +41 -0
  1341. slughorn-0.0.2/ext/pybind11/.github/workflows/format.yml +54 -0
  1342. slughorn-0.0.2/ext/pybind11/.github/workflows/labeler.yml +25 -0
  1343. slughorn-0.0.2/ext/pybind11/.github/workflows/nightlies.yml +59 -0
  1344. slughorn-0.0.2/ext/pybind11/.github/workflows/pip.yml +118 -0
  1345. slughorn-0.0.2/ext/pybind11/.github/workflows/reusable-standard.yml +98 -0
  1346. slughorn-0.0.2/ext/pybind11/.github/workflows/tests-cibw.yml +77 -0
  1347. slughorn-0.0.2/ext/pybind11/.github/workflows/upstream.yml +118 -0
  1348. slughorn-0.0.2/ext/pybind11/.gitignore +54 -0
  1349. slughorn-0.0.2/ext/pybind11/.pre-commit-config.yaml +158 -0
  1350. slughorn-0.0.2/ext/pybind11/.readthedocs.yml +20 -0
  1351. slughorn-0.0.2/ext/pybind11/CMakeLists.txt +425 -0
  1352. slughorn-0.0.2/ext/pybind11/CMakePresets.json +93 -0
  1353. slughorn-0.0.2/ext/pybind11/LICENSE +29 -0
  1354. slughorn-0.0.2/ext/pybind11/README.rst +215 -0
  1355. slughorn-0.0.2/ext/pybind11/SECURITY.md +13 -0
  1356. slughorn-0.0.2/ext/pybind11/docs/Doxyfile +21 -0
  1357. slughorn-0.0.2/ext/pybind11/docs/_static/css/custom.css +3 -0
  1358. slughorn-0.0.2/ext/pybind11/docs/advanced/cast/chrono.rst +81 -0
  1359. slughorn-0.0.2/ext/pybind11/docs/advanced/cast/custom.rst +137 -0
  1360. slughorn-0.0.2/ext/pybind11/docs/advanced/cast/eigen.rst +310 -0
  1361. slughorn-0.0.2/ext/pybind11/docs/advanced/cast/functional.rst +109 -0
  1362. slughorn-0.0.2/ext/pybind11/docs/advanced/cast/index.rst +43 -0
  1363. slughorn-0.0.2/ext/pybind11/docs/advanced/cast/overview.rst +170 -0
  1364. slughorn-0.0.2/ext/pybind11/docs/advanced/cast/stl.rst +249 -0
  1365. slughorn-0.0.2/ext/pybind11/docs/advanced/cast/strings.rst +296 -0
  1366. slughorn-0.0.2/ext/pybind11/docs/advanced/classes.rst +1432 -0
  1367. slughorn-0.0.2/ext/pybind11/docs/advanced/deadlock.md +391 -0
  1368. slughorn-0.0.2/ext/pybind11/docs/advanced/deprecated.rst +179 -0
  1369. slughorn-0.0.2/ext/pybind11/docs/advanced/embedding.rst +499 -0
  1370. slughorn-0.0.2/ext/pybind11/docs/advanced/exceptions.rst +422 -0
  1371. slughorn-0.0.2/ext/pybind11/docs/advanced/functions.rst +616 -0
  1372. slughorn-0.0.2/ext/pybind11/docs/advanced/misc.rst +615 -0
  1373. slughorn-0.0.2/ext/pybind11/docs/advanced/pycpp/index.rst +13 -0
  1374. slughorn-0.0.2/ext/pybind11/docs/advanced/pycpp/numpy.rst +493 -0
  1375. slughorn-0.0.2/ext/pybind11/docs/advanced/pycpp/object.rst +286 -0
  1376. slughorn-0.0.2/ext/pybind11/docs/advanced/pycpp/utilities.rst +155 -0
  1377. slughorn-0.0.2/ext/pybind11/docs/advanced/smart_ptrs.rst +179 -0
  1378. slughorn-0.0.2/ext/pybind11/docs/basics.rst +316 -0
  1379. slughorn-0.0.2/ext/pybind11/docs/benchmark.py +89 -0
  1380. slughorn-0.0.2/ext/pybind11/docs/benchmark.rst +95 -0
  1381. slughorn-0.0.2/ext/pybind11/docs/changelog.md +3460 -0
  1382. slughorn-0.0.2/ext/pybind11/docs/classes.rst +652 -0
  1383. slughorn-0.0.2/ext/pybind11/docs/cmake/index.rst +8 -0
  1384. slughorn-0.0.2/ext/pybind11/docs/compiling.rst +731 -0
  1385. slughorn-0.0.2/ext/pybind11/docs/conf.py +369 -0
  1386. slughorn-0.0.2/ext/pybind11/docs/faq.rst +351 -0
  1387. slughorn-0.0.2/ext/pybind11/docs/index.rst +49 -0
  1388. slughorn-0.0.2/ext/pybind11/docs/installing.rst +105 -0
  1389. slughorn-0.0.2/ext/pybind11/docs/limitations.rst +68 -0
  1390. slughorn-0.0.2/ext/pybind11/docs/pybind11-logo.png +0 -0
  1391. slughorn-0.0.2/ext/pybind11/docs/pybind11_vs_boost_python1.png +0 -0
  1392. slughorn-0.0.2/ext/pybind11/docs/pybind11_vs_boost_python1.svg +427 -0
  1393. slughorn-0.0.2/ext/pybind11/docs/pybind11_vs_boost_python2.png +0 -0
  1394. slughorn-0.0.2/ext/pybind11/docs/pybind11_vs_boost_python2.svg +427 -0
  1395. slughorn-0.0.2/ext/pybind11/docs/reference.rst +130 -0
  1396. slughorn-0.0.2/ext/pybind11/docs/release.rst +135 -0
  1397. slughorn-0.0.2/ext/pybind11/docs/requirements.in +7 -0
  1398. slughorn-0.0.2/ext/pybind11/docs/requirements.txt +87 -0
  1399. slughorn-0.0.2/ext/pybind11/docs/upgrade.rst +748 -0
  1400. slughorn-0.0.2/ext/pybind11/include/pybind11/attr.h +730 -0
  1401. slughorn-0.0.2/ext/pybind11/include/pybind11/buffer_info.h +209 -0
  1402. slughorn-0.0.2/ext/pybind11/include/pybind11/cast.h +2446 -0
  1403. slughorn-0.0.2/ext/pybind11/include/pybind11/chrono.h +227 -0
  1404. slughorn-0.0.2/ext/pybind11/include/pybind11/common.h +2 -0
  1405. slughorn-0.0.2/ext/pybind11/include/pybind11/complex.h +93 -0
  1406. slughorn-0.0.2/ext/pybind11/include/pybind11/conduit/README.txt +15 -0
  1407. slughorn-0.0.2/ext/pybind11/include/pybind11/conduit/pybind11_conduit_v1.h +116 -0
  1408. slughorn-0.0.2/ext/pybind11/include/pybind11/conduit/pybind11_platform_abi_id.h +87 -0
  1409. slughorn-0.0.2/ext/pybind11/include/pybind11/conduit/wrap_include_python_h.h +72 -0
  1410. slughorn-0.0.2/ext/pybind11/include/pybind11/critical_section.h +56 -0
  1411. slughorn-0.0.2/ext/pybind11/include/pybind11/detail/argument_vector.h +417 -0
  1412. slughorn-0.0.2/ext/pybind11/include/pybind11/detail/class.h +847 -0
  1413. slughorn-0.0.2/ext/pybind11/include/pybind11/detail/common.h +1427 -0
  1414. slughorn-0.0.2/ext/pybind11/include/pybind11/detail/cpp_conduit.h +75 -0
  1415. slughorn-0.0.2/ext/pybind11/include/pybind11/detail/descr.h +226 -0
  1416. slughorn-0.0.2/ext/pybind11/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h +39 -0
  1417. slughorn-0.0.2/ext/pybind11/include/pybind11/detail/exception_translation.h +71 -0
  1418. slughorn-0.0.2/ext/pybind11/include/pybind11/detail/function_record_pyobject.h +192 -0
  1419. slughorn-0.0.2/ext/pybind11/include/pybind11/detail/holder_caster_foreign_helpers.h +104 -0
  1420. slughorn-0.0.2/ext/pybind11/include/pybind11/detail/init.h +548 -0
  1421. slughorn-0.0.2/ext/pybind11/include/pybind11/detail/internals.h +1082 -0
  1422. slughorn-0.0.2/ext/pybind11/include/pybind11/detail/native_enum_data.h +227 -0
  1423. slughorn-0.0.2/ext/pybind11/include/pybind11/detail/pybind11_namespace_macros.h +82 -0
  1424. slughorn-0.0.2/ext/pybind11/include/pybind11/detail/struct_smart_holder.h +398 -0
  1425. slughorn-0.0.2/ext/pybind11/include/pybind11/detail/type_caster_base.h +1711 -0
  1426. slughorn-0.0.2/ext/pybind11/include/pybind11/detail/typeid.h +65 -0
  1427. slughorn-0.0.2/ext/pybind11/include/pybind11/detail/using_smart_holder.h +22 -0
  1428. slughorn-0.0.2/ext/pybind11/include/pybind11/detail/value_and_holder.h +92 -0
  1429. slughorn-0.0.2/ext/pybind11/include/pybind11/eigen/common.h +9 -0
  1430. slughorn-0.0.2/ext/pybind11/include/pybind11/eigen/matrix.h +723 -0
  1431. slughorn-0.0.2/ext/pybind11/include/pybind11/eigen/tensor.h +520 -0
  1432. slughorn-0.0.2/ext/pybind11/include/pybind11/eigen.h +12 -0
  1433. slughorn-0.0.2/ext/pybind11/include/pybind11/embed.h +320 -0
  1434. slughorn-0.0.2/ext/pybind11/include/pybind11/eval.h +161 -0
  1435. slughorn-0.0.2/ext/pybind11/include/pybind11/functional.h +147 -0
  1436. slughorn-0.0.2/ext/pybind11/include/pybind11/gil.h +203 -0
  1437. slughorn-0.0.2/ext/pybind11/include/pybind11/gil_safe_call_once.h +273 -0
  1438. slughorn-0.0.2/ext/pybind11/include/pybind11/gil_simple.h +37 -0
  1439. slughorn-0.0.2/ext/pybind11/include/pybind11/iostream.h +273 -0
  1440. slughorn-0.0.2/ext/pybind11/include/pybind11/native_enum.h +76 -0
  1441. slughorn-0.0.2/ext/pybind11/include/pybind11/numpy.h +2412 -0
  1442. slughorn-0.0.2/ext/pybind11/include/pybind11/operators.h +202 -0
  1443. slughorn-0.0.2/ext/pybind11/include/pybind11/options.h +92 -0
  1444. slughorn-0.0.2/ext/pybind11/include/pybind11/pybind11.h +3962 -0
  1445. slughorn-0.0.2/ext/pybind11/include/pybind11/pytypes.h +2736 -0
  1446. slughorn-0.0.2/ext/pybind11/include/pybind11/stl/filesystem.h +114 -0
  1447. slughorn-0.0.2/ext/pybind11/include/pybind11/stl.h +666 -0
  1448. slughorn-0.0.2/ext/pybind11/include/pybind11/stl_bind.h +858 -0
  1449. slughorn-0.0.2/ext/pybind11/include/pybind11/subinterpreter.h +291 -0
  1450. slughorn-0.0.2/ext/pybind11/include/pybind11/trampoline_self_life_support.h +65 -0
  1451. slughorn-0.0.2/ext/pybind11/include/pybind11/type_caster_pyobject_ptr.h +61 -0
  1452. slughorn-0.0.2/ext/pybind11/include/pybind11/typing.h +295 -0
  1453. slughorn-0.0.2/ext/pybind11/include/pybind11/warnings.h +75 -0
  1454. slughorn-0.0.2/ext/pybind11/noxfile.py +151 -0
  1455. slughorn-0.0.2/ext/pybind11/pybind11/__init__.py +19 -0
  1456. slughorn-0.0.2/ext/pybind11/pybind11/__main__.py +97 -0
  1457. slughorn-0.0.2/ext/pybind11/pybind11/_version.py +34 -0
  1458. slughorn-0.0.2/ext/pybind11/pybind11/commands.py +39 -0
  1459. slughorn-0.0.2/ext/pybind11/pybind11/py.typed +0 -0
  1460. slughorn-0.0.2/ext/pybind11/pybind11/setup_helpers.py +500 -0
  1461. slughorn-0.0.2/ext/pybind11/pyproject.toml +211 -0
  1462. slughorn-0.0.2/ext/pybind11/tests/CMakeLists.txt +686 -0
  1463. slughorn-0.0.2/ext/pybind11/tests/conftest.py +313 -0
  1464. slughorn-0.0.2/ext/pybind11/tests/constructor_stats.h +330 -0
  1465. slughorn-0.0.2/ext/pybind11/tests/cross_module_gil_utils.cpp +111 -0
  1466. slughorn-0.0.2/ext/pybind11/tests/cross_module_interleaved_error_already_set.cpp +54 -0
  1467. slughorn-0.0.2/ext/pybind11/tests/custom_exceptions.py +10 -0
  1468. slughorn-0.0.2/ext/pybind11/tests/eigen_tensor_avoid_stl_array.cpp +16 -0
  1469. slughorn-0.0.2/ext/pybind11/tests/env.py +76 -0
  1470. slughorn-0.0.2/ext/pybind11/tests/exo_planet_c_api.cpp +76 -0
  1471. slughorn-0.0.2/ext/pybind11/tests/exo_planet_pybind11.cpp +19 -0
  1472. slughorn-0.0.2/ext/pybind11/tests/extra_python_package/pytest.ini +0 -0
  1473. slughorn-0.0.2/ext/pybind11/tests/extra_python_package/test_files.py +385 -0
  1474. slughorn-0.0.2/ext/pybind11/tests/extra_setuptools/pytest.ini +0 -0
  1475. slughorn-0.0.2/ext/pybind11/tests/extra_setuptools/test_setuphelper.py +153 -0
  1476. slughorn-0.0.2/ext/pybind11/tests/home_planet_very_lonely_traveler.cpp +13 -0
  1477. slughorn-0.0.2/ext/pybind11/tests/local_bindings.h +93 -0
  1478. slughorn-0.0.2/ext/pybind11/tests/mod_per_interpreter_gil.cpp +20 -0
  1479. slughorn-0.0.2/ext/pybind11/tests/mod_per_interpreter_gil_with_singleton.cpp +147 -0
  1480. slughorn-0.0.2/ext/pybind11/tests/mod_shared_interpreter_gil.cpp +17 -0
  1481. slughorn-0.0.2/ext/pybind11/tests/object.h +205 -0
  1482. slughorn-0.0.2/ext/pybind11/tests/pure_cpp/CMakeLists.txt +22 -0
  1483. slughorn-0.0.2/ext/pybind11/tests/pure_cpp/smart_holder_poc.h +56 -0
  1484. slughorn-0.0.2/ext/pybind11/tests/pure_cpp/smart_holder_poc_test.cpp +427 -0
  1485. slughorn-0.0.2/ext/pybind11/tests/pybind11_cross_module_tests.cpp +163 -0
  1486. slughorn-0.0.2/ext/pybind11/tests/pybind11_tests.cpp +141 -0
  1487. slughorn-0.0.2/ext/pybind11/tests/pybind11_tests.h +119 -0
  1488. slughorn-0.0.2/ext/pybind11/tests/pyproject.toml +40 -0
  1489. slughorn-0.0.2/ext/pybind11/tests/pytest.ini +22 -0
  1490. slughorn-0.0.2/ext/pybind11/tests/requirements.txt +20 -0
  1491. slughorn-0.0.2/ext/pybind11/tests/standalone_enum_module.cpp +13 -0
  1492. slughorn-0.0.2/ext/pybind11/tests/test_async.cpp +25 -0
  1493. slughorn-0.0.2/ext/pybind11/tests/test_async.py +31 -0
  1494. slughorn-0.0.2/ext/pybind11/tests/test_buffers.cpp +571 -0
  1495. slughorn-0.0.2/ext/pybind11/tests/test_buffers.py +471 -0
  1496. slughorn-0.0.2/ext/pybind11/tests/test_builtin_casters.cpp +393 -0
  1497. slughorn-0.0.2/ext/pybind11/tests/test_builtin_casters.py +624 -0
  1498. slughorn-0.0.2/ext/pybind11/tests/test_call_policies.cpp +113 -0
  1499. slughorn-0.0.2/ext/pybind11/tests/test_call_policies.py +256 -0
  1500. slughorn-0.0.2/ext/pybind11/tests/test_callbacks.cpp +302 -0
  1501. slughorn-0.0.2/ext/pybind11/tests/test_callbacks.py +248 -0
  1502. slughorn-0.0.2/ext/pybind11/tests/test_chrono.cpp +81 -0
  1503. slughorn-0.0.2/ext/pybind11/tests/test_chrono.py +207 -0
  1504. slughorn-0.0.2/ext/pybind11/tests/test_class.cpp +694 -0
  1505. slughorn-0.0.2/ext/pybind11/tests/test_class.py +557 -0
  1506. slughorn-0.0.2/ext/pybind11/tests/test_class_cross_module_use_after_one_module_dealloc.cpp +23 -0
  1507. slughorn-0.0.2/ext/pybind11/tests/test_class_cross_module_use_after_one_module_dealloc.py +43 -0
  1508. slughorn-0.0.2/ext/pybind11/tests/test_class_release_gil_before_calling_cpp_dtor.cpp +54 -0
  1509. slughorn-0.0.2/ext/pybind11/tests/test_class_release_gil_before_calling_cpp_dtor.py +21 -0
  1510. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_basic.cpp +248 -0
  1511. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_basic.py +248 -0
  1512. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_disowning.cpp +41 -0
  1513. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_disowning.py +78 -0
  1514. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_disowning_mi.cpp +85 -0
  1515. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_disowning_mi.py +246 -0
  1516. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_factory_constructors.cpp +156 -0
  1517. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_factory_constructors.py +53 -0
  1518. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_inheritance.cpp +90 -0
  1519. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_inheritance.py +63 -0
  1520. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_mi_thunks.cpp +230 -0
  1521. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_mi_thunks.py +104 -0
  1522. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_property.cpp +129 -0
  1523. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_property.py +206 -0
  1524. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_property_non_owning.cpp +65 -0
  1525. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_property_non_owning.py +30 -0
  1526. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_shared_ptr_copy_move.cpp +103 -0
  1527. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_shared_ptr_copy_move.py +41 -0
  1528. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_basic.cpp +57 -0
  1529. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_basic.py +35 -0
  1530. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_self_life_support.cpp +86 -0
  1531. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_self_life_support.py +38 -0
  1532. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_shared_from_this.cpp +137 -0
  1533. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_shared_from_this.py +247 -0
  1534. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_shared_ptr_cpp_arg.cpp +92 -0
  1535. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_shared_ptr_cpp_arg.py +154 -0
  1536. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_unique_ptr.cpp +63 -0
  1537. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_trampoline_unique_ptr.py +31 -0
  1538. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_unique_ptr_custom_deleter.cpp +30 -0
  1539. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_unique_ptr_custom_deleter.py +8 -0
  1540. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_unique_ptr_member.cpp +50 -0
  1541. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_unique_ptr_member.py +26 -0
  1542. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_virtual_py_cpp_mix.cpp +58 -0
  1543. slughorn-0.0.2/ext/pybind11/tests/test_class_sh_virtual_py_cpp_mix.py +66 -0
  1544. slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/CMakeLists.txt +91 -0
  1545. slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/embed.cpp +23 -0
  1546. slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/installed_embed/CMakeLists.txt +19 -0
  1547. slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/installed_function/CMakeLists.txt +29 -0
  1548. slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/installed_target/CMakeLists.txt +37 -0
  1549. slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/main.cpp +6 -0
  1550. slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/subdirectory_embed/CMakeLists.txt +38 -0
  1551. slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/subdirectory_function/CMakeLists.txt +32 -0
  1552. slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/subdirectory_target/CMakeLists.txt +38 -0
  1553. slughorn-0.0.2/ext/pybind11/tests/test_cmake_build/test.py +10 -0
  1554. slughorn-0.0.2/ext/pybind11/tests/test_const_name.cpp +55 -0
  1555. slughorn-0.0.2/ext/pybind11/tests/test_const_name.py +31 -0
  1556. slughorn-0.0.2/ext/pybind11/tests/test_constants_and_functions.cpp +158 -0
  1557. slughorn-0.0.2/ext/pybind11/tests/test_constants_and_functions.py +58 -0
  1558. slughorn-0.0.2/ext/pybind11/tests/test_copy_move.cpp +546 -0
  1559. slughorn-0.0.2/ext/pybind11/tests/test_copy_move.py +144 -0
  1560. slughorn-0.0.2/ext/pybind11/tests/test_cpp_conduit.cpp +22 -0
  1561. slughorn-0.0.2/ext/pybind11/tests/test_cpp_conduit.py +183 -0
  1562. slughorn-0.0.2/ext/pybind11/tests/test_cpp_conduit_traveler_bindings.h +47 -0
  1563. slughorn-0.0.2/ext/pybind11/tests/test_cpp_conduit_traveler_types.h +25 -0
  1564. slughorn-0.0.2/ext/pybind11/tests/test_cross_module_rtti/CMakeLists.txt +70 -0
  1565. slughorn-0.0.2/ext/pybind11/tests/test_cross_module_rtti/bindings.cpp +20 -0
  1566. slughorn-0.0.2/ext/pybind11/tests/test_cross_module_rtti/catch.cpp +22 -0
  1567. slughorn-0.0.2/ext/pybind11/tests/test_cross_module_rtti/lib.cpp +13 -0
  1568. slughorn-0.0.2/ext/pybind11/tests/test_cross_module_rtti/lib.h +31 -0
  1569. slughorn-0.0.2/ext/pybind11/tests/test_cross_module_rtti/test_cross_module_rtti.cpp +50 -0
  1570. slughorn-0.0.2/ext/pybind11/tests/test_custom_type_casters.cpp +217 -0
  1571. slughorn-0.0.2/ext/pybind11/tests/test_custom_type_casters.py +126 -0
  1572. slughorn-0.0.2/ext/pybind11/tests/test_custom_type_setup.cpp +104 -0
  1573. slughorn-0.0.2/ext/pybind11/tests/test_custom_type_setup.py +79 -0
  1574. slughorn-0.0.2/ext/pybind11/tests/test_docs_advanced_cast_custom.cpp +69 -0
  1575. slughorn-0.0.2/ext/pybind11/tests/test_docs_advanced_cast_custom.py +40 -0
  1576. slughorn-0.0.2/ext/pybind11/tests/test_docstring_options.cpp +129 -0
  1577. slughorn-0.0.2/ext/pybind11/tests/test_docstring_options.py +72 -0
  1578. slughorn-0.0.2/ext/pybind11/tests/test_eigen_matrix.cpp +448 -0
  1579. slughorn-0.0.2/ext/pybind11/tests/test_eigen_matrix.py +839 -0
  1580. slughorn-0.0.2/ext/pybind11/tests/test_eigen_tensor.cpp +18 -0
  1581. slughorn-0.0.2/ext/pybind11/tests/test_eigen_tensor.inl +338 -0
  1582. slughorn-0.0.2/ext/pybind11/tests/test_eigen_tensor.py +316 -0
  1583. slughorn-0.0.2/ext/pybind11/tests/test_enum.cpp +149 -0
  1584. slughorn-0.0.2/ext/pybind11/tests/test_enum.py +344 -0
  1585. slughorn-0.0.2/ext/pybind11/tests/test_eval.cpp +118 -0
  1586. slughorn-0.0.2/ext/pybind11/tests/test_eval.py +52 -0
  1587. slughorn-0.0.2/ext/pybind11/tests/test_eval_call.py +5 -0
  1588. slughorn-0.0.2/ext/pybind11/tests/test_exceptions.cpp +427 -0
  1589. slughorn-0.0.2/ext/pybind11/tests/test_exceptions.h +13 -0
  1590. slughorn-0.0.2/ext/pybind11/tests/test_exceptions.py +439 -0
  1591. slughorn-0.0.2/ext/pybind11/tests/test_factory_constructors.cpp +434 -0
  1592. slughorn-0.0.2/ext/pybind11/tests/test_factory_constructors.py +531 -0
  1593. slughorn-0.0.2/ext/pybind11/tests/test_gil_scoped.cpp +144 -0
  1594. slughorn-0.0.2/ext/pybind11/tests/test_gil_scoped.py +294 -0
  1595. slughorn-0.0.2/ext/pybind11/tests/test_iostream.cpp +126 -0
  1596. slughorn-0.0.2/ext/pybind11/tests/test_iostream.py +304 -0
  1597. slughorn-0.0.2/ext/pybind11/tests/test_kwargs_and_defaults.cpp +331 -0
  1598. slughorn-0.0.2/ext/pybind11/tests/test_kwargs_and_defaults.py +473 -0
  1599. slughorn-0.0.2/ext/pybind11/tests/test_local_bindings.cpp +131 -0
  1600. slughorn-0.0.2/ext/pybind11/tests/test_local_bindings.py +291 -0
  1601. slughorn-0.0.2/ext/pybind11/tests/test_methods_and_attributes.cpp +788 -0
  1602. slughorn-0.0.2/ext/pybind11/tests/test_methods_and_attributes.py +715 -0
  1603. slughorn-0.0.2/ext/pybind11/tests/test_modules.cpp +124 -0
  1604. slughorn-0.0.2/ext/pybind11/tests/test_modules.py +146 -0
  1605. slughorn-0.0.2/ext/pybind11/tests/test_multiple_inheritance.cpp +341 -0
  1606. slughorn-0.0.2/ext/pybind11/tests/test_multiple_inheritance.py +500 -0
  1607. slughorn-0.0.2/ext/pybind11/tests/test_multiple_interpreters.py +437 -0
  1608. slughorn-0.0.2/ext/pybind11/tests/test_native_enum.cpp +262 -0
  1609. slughorn-0.0.2/ext/pybind11/tests/test_native_enum.py +377 -0
  1610. slughorn-0.0.2/ext/pybind11/tests/test_numpy_array.cpp +616 -0
  1611. slughorn-0.0.2/ext/pybind11/tests/test_numpy_array.py +749 -0
  1612. slughorn-0.0.2/ext/pybind11/tests/test_numpy_dtypes.cpp +745 -0
  1613. slughorn-0.0.2/ext/pybind11/tests/test_numpy_dtypes.py +464 -0
  1614. slughorn-0.0.2/ext/pybind11/tests/test_numpy_scalars.cpp +63 -0
  1615. slughorn-0.0.2/ext/pybind11/tests/test_numpy_scalars.py +54 -0
  1616. slughorn-0.0.2/ext/pybind11/tests/test_numpy_vectorize.cpp +137 -0
  1617. slughorn-0.0.2/ext/pybind11/tests/test_numpy_vectorize.py +319 -0
  1618. slughorn-0.0.2/ext/pybind11/tests/test_opaque_types.cpp +77 -0
  1619. slughorn-0.0.2/ext/pybind11/tests/test_opaque_types.py +64 -0
  1620. slughorn-0.0.2/ext/pybind11/tests/test_operator_overloading.cpp +281 -0
  1621. slughorn-0.0.2/ext/pybind11/tests/test_operator_overloading.py +161 -0
  1622. slughorn-0.0.2/ext/pybind11/tests/test_pickling.cpp +191 -0
  1623. slughorn-0.0.2/ext/pybind11/tests/test_pickling.py +149 -0
  1624. slughorn-0.0.2/ext/pybind11/tests/test_potentially_slicing_weak_ptr.cpp +170 -0
  1625. slughorn-0.0.2/ext/pybind11/tests/test_potentially_slicing_weak_ptr.py +174 -0
  1626. slughorn-0.0.2/ext/pybind11/tests/test_python_multiple_inheritance.cpp +45 -0
  1627. slughorn-0.0.2/ext/pybind11/tests/test_python_multiple_inheritance.py +36 -0
  1628. slughorn-0.0.2/ext/pybind11/tests/test_pytypes.cpp +1215 -0
  1629. slughorn-0.0.2/ext/pybind11/tests/test_pytypes.py +1374 -0
  1630. slughorn-0.0.2/ext/pybind11/tests/test_scoped_critical_section.cpp +274 -0
  1631. slughorn-0.0.2/ext/pybind11/tests/test_scoped_critical_section.py +30 -0
  1632. slughorn-0.0.2/ext/pybind11/tests/test_sequences_and_iterators.cpp +600 -0
  1633. slughorn-0.0.2/ext/pybind11/tests/test_sequences_and_iterators.py +307 -0
  1634. slughorn-0.0.2/ext/pybind11/tests/test_smart_ptr.cpp +627 -0
  1635. slughorn-0.0.2/ext/pybind11/tests/test_smart_ptr.py +370 -0
  1636. slughorn-0.0.2/ext/pybind11/tests/test_standalone_enum_module.py +18 -0
  1637. slughorn-0.0.2/ext/pybind11/tests/test_stl.cpp +667 -0
  1638. slughorn-0.0.2/ext/pybind11/tests/test_stl.py +735 -0
  1639. slughorn-0.0.2/ext/pybind11/tests/test_stl_binders.cpp +275 -0
  1640. slughorn-0.0.2/ext/pybind11/tests/test_stl_binders.py +414 -0
  1641. slughorn-0.0.2/ext/pybind11/tests/test_tagbased_polymorphic.cpp +150 -0
  1642. slughorn-0.0.2/ext/pybind11/tests/test_tagbased_polymorphic.py +30 -0
  1643. slughorn-0.0.2/ext/pybind11/tests/test_thread.cpp +108 -0
  1644. slughorn-0.0.2/ext/pybind11/tests/test_thread.py +80 -0
  1645. slughorn-0.0.2/ext/pybind11/tests/test_type_caster_pyobject_ptr.cpp +168 -0
  1646. slughorn-0.0.2/ext/pybind11/tests/test_type_caster_pyobject_ptr.py +125 -0
  1647. slughorn-0.0.2/ext/pybind11/tests/test_type_caster_std_function_specializations.cpp +46 -0
  1648. slughorn-0.0.2/ext/pybind11/tests/test_type_caster_std_function_specializations.py +15 -0
  1649. slughorn-0.0.2/ext/pybind11/tests/test_union.cpp +22 -0
  1650. slughorn-0.0.2/ext/pybind11/tests/test_union.py +10 -0
  1651. slughorn-0.0.2/ext/pybind11/tests/test_unnamed_namespace_a.cpp +37 -0
  1652. slughorn-0.0.2/ext/pybind11/tests/test_unnamed_namespace_a.py +33 -0
  1653. slughorn-0.0.2/ext/pybind11/tests/test_unnamed_namespace_b.cpp +13 -0
  1654. slughorn-0.0.2/ext/pybind11/tests/test_unnamed_namespace_b.py +7 -0
  1655. slughorn-0.0.2/ext/pybind11/tests/test_vector_unique_ptr_member.cpp +54 -0
  1656. slughorn-0.0.2/ext/pybind11/tests/test_vector_unique_ptr_member.py +16 -0
  1657. slughorn-0.0.2/ext/pybind11/tests/test_virtual_functions.cpp +591 -0
  1658. slughorn-0.0.2/ext/pybind11/tests/test_virtual_functions.py +468 -0
  1659. slughorn-0.0.2/ext/pybind11/tests/test_warnings.cpp +46 -0
  1660. slughorn-0.0.2/ext/pybind11/tests/test_warnings.py +68 -0
  1661. slughorn-0.0.2/ext/pybind11/tests/test_with_catch/CMakeLists.txt +64 -0
  1662. slughorn-0.0.2/ext/pybind11/tests/test_with_catch/catch.cpp +175 -0
  1663. slughorn-0.0.2/ext/pybind11/tests/test_with_catch/catch_skip.h +21 -0
  1664. slughorn-0.0.2/ext/pybind11/tests/test_with_catch/external_module.cpp +39 -0
  1665. slughorn-0.0.2/ext/pybind11/tests/test_with_catch/test_args_convert_vector.cpp +80 -0
  1666. slughorn-0.0.2/ext/pybind11/tests/test_with_catch/test_argument_vector.cpp +94 -0
  1667. slughorn-0.0.2/ext/pybind11/tests/test_with_catch/test_interpreter.cpp +511 -0
  1668. slughorn-0.0.2/ext/pybind11/tests/test_with_catch/test_interpreter.py +16 -0
  1669. slughorn-0.0.2/ext/pybind11/tests/test_with_catch/test_subinterpreter.cpp +579 -0
  1670. slughorn-0.0.2/ext/pybind11/tests/test_with_catch/test_trampoline.py +18 -0
  1671. slughorn-0.0.2/ext/pybind11/tests/valgrind-numpy-scipy.supp +140 -0
  1672. slughorn-0.0.2/ext/pybind11/tests/valgrind-python.supp +117 -0
  1673. slughorn-0.0.2/ext/pybind11/tools/FindCatch.cmake +74 -0
  1674. slughorn-0.0.2/ext/pybind11/tools/FindEigen3.cmake +86 -0
  1675. slughorn-0.0.2/ext/pybind11/tools/FindPythonLibsNew.cmake +320 -0
  1676. slughorn-0.0.2/ext/pybind11/tools/JoinPaths.cmake +23 -0
  1677. slughorn-0.0.2/ext/pybind11/tools/check-style.sh +44 -0
  1678. slughorn-0.0.2/ext/pybind11/tools/cmake_uninstall.cmake.in +23 -0
  1679. slughorn-0.0.2/ext/pybind11/tools/codespell_ignore_lines_from_errors.py +40 -0
  1680. slughorn-0.0.2/ext/pybind11/tools/libsize.py +38 -0
  1681. slughorn-0.0.2/ext/pybind11/tools/make_changelog.py +121 -0
  1682. slughorn-0.0.2/ext/pybind11/tools/make_global.py +33 -0
  1683. slughorn-0.0.2/ext/pybind11/tools/pybind11.pc.in +7 -0
  1684. slughorn-0.0.2/ext/pybind11/tools/pybind11Common.cmake +458 -0
  1685. slughorn-0.0.2/ext/pybind11/tools/pybind11Config.cmake.in +240 -0
  1686. slughorn-0.0.2/ext/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +94 -0
  1687. slughorn-0.0.2/ext/pybind11/tools/pybind11NewTools.cmake +339 -0
  1688. slughorn-0.0.2/ext/pybind11/tools/pybind11Tools.cmake +217 -0
  1689. slughorn-0.0.2/ext/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +185 -0
  1690. slughorn-0.0.2/ext/python/slughorn-canvas.cpp +788 -0
  1691. slughorn-0.0.2/ext/python/slughorn-core.cpp +1355 -0
  1692. slughorn-0.0.2/ext/python/slughorn-emoji.cpp +61 -0
  1693. slughorn-0.0.2/ext/python/slughorn-freetype.cpp +131 -0
  1694. slughorn-0.0.2/ext/python/slughorn-nanosvg.cpp +122 -0
  1695. slughorn-0.0.2/ext/python/slughorn-python.hpp +256 -0
  1696. slughorn-0.0.2/ext/python/slughorn-render.cpp +214 -0
  1697. slughorn-0.0.2/ext/python/slughorn-tessellate.cpp +57 -0
  1698. slughorn-0.0.2/ext/python/slughorn.cpp +124 -0
  1699. slughorn-0.0.2/ext/skia-args.gn +52 -0
  1700. slughorn-0.0.2/pyproject.toml +43 -0
  1701. slughorn-0.0.2/pytest.ini +5 -0
  1702. slughorn-0.0.2/slughorn/blend2d.hpp +310 -0
  1703. slughorn-0.0.2/slughorn/cairo.hpp +221 -0
  1704. slughorn-0.0.2/slughorn/canvas.hpp +2506 -0
  1705. slughorn-0.0.2/slughorn/emoji.hpp +1188 -0
  1706. slughorn-0.0.2/slughorn/freetype.hpp +1523 -0
  1707. slughorn-0.0.2/slughorn/nanosvg.hpp +730 -0
  1708. slughorn-0.0.2/slughorn/render.hpp +809 -0
  1709. slughorn-0.0.2/slughorn/serial.hpp +943 -0
  1710. slughorn-0.0.2/slughorn/skia.hpp +365 -0
  1711. slughorn-0.0.2/slughorn/slughorn.cpp +1681 -0
  1712. slughorn-0.0.2/slughorn/slughorn.hpp +2352 -0
  1713. slughorn-0.0.2/slughorn/tessellate.hpp +313 -0
  1714. slughorn-0.0.2/test/benchmark/Makefile +26 -0
  1715. slughorn-0.0.2/test/benchmark/slughorn-benchmark-cairo.cpp +97 -0
  1716. slughorn-0.0.2/test/benchmark/slughorn-benchmark-python.py +134 -0
  1717. slughorn-0.0.2/test/benchmark/slughorn-benchmark-skia.cpp +209 -0
  1718. slughorn-0.0.2/test/python/conftest.py +86 -0
  1719. slughorn-0.0.2/test/python/test_canvas.py +727 -0
  1720. slughorn-0.0.2/test/python/test_emoji.py +62 -0
  1721. slughorn-0.0.2/test/python/test_freetype.py +326 -0
  1722. slughorn-0.0.2/test/python/test_nanosvg.py +481 -0
  1723. slughorn-0.0.2/test/python/test_render.py +529 -0
  1724. slughorn-0.0.2/test/python/test_serial.py +373 -0
  1725. slughorn-0.0.2/test/python/test_slughorn.py +933 -0
  1726. slughorn-0.0.2/test/python/test_tessellate.py +194 -0
  1727. slughorn-0.0.2/test/slughorn-test-bands.cpp +475 -0
  1728. slughorn-0.0.2/test/slughorn-test-blend2d.cpp +108 -0
  1729. slughorn-0.0.2/test/slughorn-test-cairo.cpp +167 -0
  1730. slughorn-0.0.2/test/slughorn-test-canvas.cpp +953 -0
  1731. slughorn-0.0.2/test/slughorn-test-emoji.html +649 -0
  1732. slughorn-0.0.2/test/slughorn-test-nanosvg.cpp +508 -0
  1733. slughorn-0.0.2/test/slughorn-test-render.cpp +284 -0
  1734. slughorn-0.0.2/test/slughorn-test-scanlinesweep.cpp +204 -0
  1735. 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