inkcpp_rb 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (273) hide show
  1. checksums.yaml +7 -0
  2. data/.ruby-version +1 -0
  3. data/CHANGELOG.md +1 -0
  4. data/Gemfile +10 -0
  5. data/Gemfile.lock +84 -0
  6. data/LICENSE +7 -0
  7. data/README.md +3 -0
  8. data/Rakefile +16 -0
  9. data/bin/console +15 -0
  10. data/bin/setup +10 -0
  11. data/bin/tapioca +29 -0
  12. data/ext/inkcpp_rb/extconf.rb +19 -0
  13. data/ext/inkcpp_rb/inkcpp/.clang-format +99 -0
  14. data/ext/inkcpp_rb/inkcpp/.github/FUNDING.yml +1 -0
  15. data/ext/inkcpp_rb/inkcpp/.github/workflows/build.yml +344 -0
  16. data/ext/inkcpp_rb/inkcpp/.github/workflows/release.yml +49 -0
  17. data/ext/inkcpp_rb/inkcpp/.gitignore +25 -0
  18. data/ext/inkcpp_rb/inkcpp/.gitmodules +9 -0
  19. data/ext/inkcpp_rb/inkcpp/CMakeLists.txt +170 -0
  20. data/ext/inkcpp_rb/inkcpp/CODE_OF_CONDUCT.md +76 -0
  21. data/ext/inkcpp_rb/inkcpp/CONTRIBUTING.md +55 -0
  22. data/ext/inkcpp_rb/inkcpp/Config.cmake.in +2 -0
  23. data/ext/inkcpp_rb/inkcpp/Documentation/cmake_example/CMakeLists.txt +13 -0
  24. data/ext/inkcpp_rb/inkcpp/Documentation/cmake_example/main.c +38 -0
  25. data/ext/inkcpp_rb/inkcpp/Documentation/cmake_example/main.cpp +40 -0
  26. data/ext/inkcpp_rb/inkcpp/Documentation/cmake_example/test.ink +8 -0
  27. data/ext/inkcpp_rb/inkcpp/Documentation/cmake_example/test.ink.json +1 -0
  28. data/ext/inkcpp_rb/inkcpp/Documentation/cmake_example.zip +0 -0
  29. data/ext/inkcpp_rb/inkcpp/Documentation/unreal/InkCPP_DEMO.zip +0 -0
  30. data/ext/inkcpp_rb/inkcpp/Documentation/unreal/imgs/CreateThread.png +0 -0
  31. data/ext/inkcpp_rb/inkcpp/Documentation/unreal/imgs/HandleChoice.png +0 -0
  32. data/ext/inkcpp_rb/inkcpp/Documentation/unreal/imgs/ListElementOf.png +0 -0
  33. data/ext/inkcpp_rb/inkcpp/Documentation/unreal/imgs/MinimalRuntime.png +0 -0
  34. data/ext/inkcpp_rb/inkcpp/Documentation/unreal/imgs/MinimalThread.png +0 -0
  35. data/ext/inkcpp_rb/inkcpp/Documentation/unreal/imgs/ObseverChange.png +0 -0
  36. data/ext/inkcpp_rb/inkcpp/Documentation/unreal/imgs/TagListGetValue.png +0 -0
  37. data/ext/inkcpp_rb/inkcpp/Documentation/unreal/imgs/YieldResume.png +0 -0
  38. data/ext/inkcpp_rb/inkcpp/Doxyfile +2825 -0
  39. data/ext/inkcpp_rb/inkcpp/LICENSE.txt +22 -0
  40. data/ext/inkcpp_rb/inkcpp/Minimal.runsettings +8 -0
  41. data/ext/inkcpp_rb/inkcpp/README.md +192 -0
  42. data/ext/inkcpp_rb/inkcpp/inkcpp/CMakeLists.txt +67 -0
  43. data/ext/inkcpp_rb/inkcpp/inkcpp/array.h +481 -0
  44. data/ext/inkcpp_rb/inkcpp/inkcpp/avl_array.h +833 -0
  45. data/ext/inkcpp_rb/inkcpp/inkcpp/casting.h +93 -0
  46. data/ext/inkcpp_rb/inkcpp/inkcpp/choice.cpp +54 -0
  47. data/ext/inkcpp_rb/inkcpp/inkcpp/collections/restorable.cpp +124 -0
  48. data/ext/inkcpp_rb/inkcpp/inkcpp/collections/restorable.h +406 -0
  49. data/ext/inkcpp_rb/inkcpp/inkcpp/container_operations.cpp +52 -0
  50. data/ext/inkcpp_rb/inkcpp/inkcpp/container_operations.h +34 -0
  51. data/ext/inkcpp_rb/inkcpp/inkcpp/executioner.h +179 -0
  52. data/ext/inkcpp_rb/inkcpp/inkcpp/functional.cpp +86 -0
  53. data/ext/inkcpp_rb/inkcpp/inkcpp/functions.cpp +54 -0
  54. data/ext/inkcpp_rb/inkcpp/inkcpp/functions.h +40 -0
  55. data/ext/inkcpp_rb/inkcpp/inkcpp/globals_impl.cpp +289 -0
  56. data/ext/inkcpp_rb/inkcpp/inkcpp/globals_impl.h +149 -0
  57. data/ext/inkcpp_rb/inkcpp/inkcpp/header.cpp +44 -0
  58. data/ext/inkcpp_rb/inkcpp/inkcpp/include/choice.h +106 -0
  59. data/ext/inkcpp_rb/inkcpp/inkcpp/include/functional.h +327 -0
  60. data/ext/inkcpp_rb/inkcpp/inkcpp/include/globals.h +196 -0
  61. data/ext/inkcpp_rb/inkcpp/inkcpp/include/list.h +187 -0
  62. data/ext/inkcpp_rb/inkcpp/inkcpp/include/runner.h +291 -0
  63. data/ext/inkcpp_rb/inkcpp/inkcpp/include/snapshot.h +61 -0
  64. data/ext/inkcpp_rb/inkcpp/inkcpp/include/story.h +219 -0
  65. data/ext/inkcpp_rb/inkcpp/inkcpp/include/story_ptr.h +233 -0
  66. data/ext/inkcpp_rb/inkcpp/inkcpp/include/traits.h +270 -0
  67. data/ext/inkcpp_rb/inkcpp/inkcpp/include/types.h +169 -0
  68. data/ext/inkcpp_rb/inkcpp/inkcpp/list_impl.cpp +79 -0
  69. data/ext/inkcpp_rb/inkcpp/inkcpp/list_impl.h +39 -0
  70. data/ext/inkcpp_rb/inkcpp/inkcpp/list_operations.cpp +276 -0
  71. data/ext/inkcpp_rb/inkcpp/inkcpp/list_operations.h +356 -0
  72. data/ext/inkcpp_rb/inkcpp/inkcpp/list_table.cpp +841 -0
  73. data/ext/inkcpp_rb/inkcpp/inkcpp/list_table.h +450 -0
  74. data/ext/inkcpp_rb/inkcpp/inkcpp/numeric_operations.cpp +40 -0
  75. data/ext/inkcpp_rb/inkcpp/inkcpp/numeric_operations.h +529 -0
  76. data/ext/inkcpp_rb/inkcpp/inkcpp/operation_bases.h +164 -0
  77. data/ext/inkcpp_rb/inkcpp/inkcpp/operations.h +100 -0
  78. data/ext/inkcpp_rb/inkcpp/inkcpp/output.cpp +528 -0
  79. data/ext/inkcpp_rb/inkcpp/inkcpp/output.h +153 -0
  80. data/ext/inkcpp_rb/inkcpp/inkcpp/platform.h +22 -0
  81. data/ext/inkcpp_rb/inkcpp/inkcpp/random.h +38 -0
  82. data/ext/inkcpp_rb/inkcpp/inkcpp/runner_impl.cpp +1396 -0
  83. data/ext/inkcpp_rb/inkcpp/inkcpp/runner_impl.h +336 -0
  84. data/ext/inkcpp_rb/inkcpp/inkcpp/simple_restorable_stack.h +335 -0
  85. data/ext/inkcpp_rb/inkcpp/inkcpp/snapshot_impl.cpp +182 -0
  86. data/ext/inkcpp_rb/inkcpp/inkcpp/snapshot_impl.h +91 -0
  87. data/ext/inkcpp_rb/inkcpp/inkcpp/snapshot_interface.h +57 -0
  88. data/ext/inkcpp_rb/inkcpp/inkcpp/stack.cpp +618 -0
  89. data/ext/inkcpp_rb/inkcpp/inkcpp/stack.h +243 -0
  90. data/ext/inkcpp_rb/inkcpp/inkcpp/story_impl.cpp +361 -0
  91. data/ext/inkcpp_rb/inkcpp/inkcpp/story_impl.h +92 -0
  92. data/ext/inkcpp_rb/inkcpp/inkcpp/story_ptr.cpp +75 -0
  93. data/ext/inkcpp_rb/inkcpp/inkcpp/string_operations.cpp +125 -0
  94. data/ext/inkcpp_rb/inkcpp/inkcpp/string_operations.h +67 -0
  95. data/ext/inkcpp_rb/inkcpp/inkcpp/string_table.cpp +149 -0
  96. data/ext/inkcpp_rb/inkcpp/inkcpp/string_table.h +47 -0
  97. data/ext/inkcpp_rb/inkcpp/inkcpp/string_utils.h +207 -0
  98. data/ext/inkcpp_rb/inkcpp/inkcpp/system.cpp +39 -0
  99. data/ext/inkcpp_rb/inkcpp/inkcpp/tuple.hpp +151 -0
  100. data/ext/inkcpp_rb/inkcpp/inkcpp/value.cpp +279 -0
  101. data/ext/inkcpp_rb/inkcpp/inkcpp/value.h +666 -0
  102. data/ext/inkcpp_rb/inkcpp/inkcpp_c/CMakeLists.txt +62 -0
  103. data/ext/inkcpp_rb/inkcpp/inkcpp_c/include/inkcpp.h +393 -0
  104. data/ext/inkcpp_rb/inkcpp/inkcpp_c/inkcpp.cpp +344 -0
  105. data/ext/inkcpp_rb/inkcpp/inkcpp_c/inkcpp_c.pc.in +10 -0
  106. data/ext/inkcpp_rb/inkcpp/inkcpp_c/tests/ExternalFunction.c +56 -0
  107. data/ext/inkcpp_rb/inkcpp/inkcpp_c/tests/Globals.c +98 -0
  108. data/ext/inkcpp_rb/inkcpp/inkcpp_c/tests/Lists.c +73 -0
  109. data/ext/inkcpp_rb/inkcpp/inkcpp_c/tests/Observer.c +36 -0
  110. data/ext/inkcpp_rb/inkcpp/inkcpp_c/tests/Snapshot.c +65 -0
  111. data/ext/inkcpp_rb/inkcpp/inkcpp_cl/CMakeLists.txt +49 -0
  112. data/ext/inkcpp_rb/inkcpp/inkcpp_cl/inkcpp_cl.cpp +215 -0
  113. data/ext/inkcpp_rb/inkcpp/inkcpp_cl/test.cpp +209 -0
  114. data/ext/inkcpp_rb/inkcpp/inkcpp_cl/test.h +8 -0
  115. data/ext/inkcpp_rb/inkcpp/inkcpp_compiler/CMakeLists.txt +37 -0
  116. data/ext/inkcpp_rb/inkcpp/inkcpp_compiler/binary_emitter.cpp +446 -0
  117. data/ext/inkcpp_rb/inkcpp/inkcpp_compiler/binary_emitter.h +70 -0
  118. data/ext/inkcpp_rb/inkcpp/inkcpp_compiler/binary_stream.cpp +166 -0
  119. data/ext/inkcpp_rb/inkcpp/inkcpp_compiler/binary_stream.h +79 -0
  120. data/ext/inkcpp_rb/inkcpp/inkcpp_compiler/command.cpp +107 -0
  121. data/ext/inkcpp_rb/inkcpp/inkcpp_compiler/compiler.cpp +96 -0
  122. data/ext/inkcpp_rb/inkcpp/inkcpp_compiler/emitter.cpp +62 -0
  123. data/ext/inkcpp_rb/inkcpp/inkcpp_compiler/emitter.h +104 -0
  124. data/ext/inkcpp_rb/inkcpp/inkcpp_compiler/include/compilation_results.h +22 -0
  125. data/ext/inkcpp_rb/inkcpp/inkcpp_compiler/include/compiler.h +44 -0
  126. data/ext/inkcpp_rb/inkcpp/inkcpp_compiler/json.hpp +24596 -0
  127. data/ext/inkcpp_rb/inkcpp/inkcpp_compiler/json_compiler.cpp +411 -0
  128. data/ext/inkcpp_rb/inkcpp/inkcpp_compiler/json_compiler.h +62 -0
  129. data/ext/inkcpp_rb/inkcpp/inkcpp_compiler/list_data.cpp +47 -0
  130. data/ext/inkcpp_rb/inkcpp/inkcpp_compiler/list_data.h +70 -0
  131. data/ext/inkcpp_rb/inkcpp/inkcpp_compiler/reporter.cpp +107 -0
  132. data/ext/inkcpp_rb/inkcpp/inkcpp_compiler/reporter.h +55 -0
  133. data/ext/inkcpp_rb/inkcpp/inkcpp_py/CMakeLists.txt +19 -0
  134. data/ext/inkcpp_rb/inkcpp/inkcpp_py/example.py +78 -0
  135. data/ext/inkcpp_rb/inkcpp/inkcpp_py/src/module.cpp +317 -0
  136. data/ext/inkcpp_rb/inkcpp/inkcpp_py/tests/conftest.py +53 -0
  137. data/ext/inkcpp_rb/inkcpp/inkcpp_py/tests/test_ExternalFunctions.py +35 -0
  138. data/ext/inkcpp_rb/inkcpp/inkcpp_py/tests/test_Globals.py +40 -0
  139. data/ext/inkcpp_rb/inkcpp/inkcpp_py/tests/test_Lists.py +43 -0
  140. data/ext/inkcpp_rb/inkcpp/inkcpp_py/tests/test_Observer.py +27 -0
  141. data/ext/inkcpp_rb/inkcpp/inkcpp_py/tests/test_Snapshot.py +57 -0
  142. data/ext/inkcpp_rb/inkcpp/inkcpp_py/unreal_example.ink +71 -0
  143. data/ext/inkcpp_rb/inkcpp/inkcpp_test/Array.cpp +115 -0
  144. data/ext/inkcpp_rb/inkcpp/inkcpp_test/CMakeLists.txt +117 -0
  145. data/ext/inkcpp_rb/inkcpp/inkcpp_test/Callstack.cpp +392 -0
  146. data/ext/inkcpp_rb/inkcpp/inkcpp_test/EmptyStringForDivert.cpp +36 -0
  147. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ExternalFunctionsExecuteProperly.cpp +34 -0
  148. data/ext/inkcpp_rb/inkcpp/inkcpp_test/FallbackFunction.cpp +77 -0
  149. data/ext/inkcpp_rb/inkcpp/inkcpp_test/Globals.cpp +73 -0
  150. data/ext/inkcpp_rb/inkcpp/inkcpp_test/InkyJson.cpp +34 -0
  151. data/ext/inkcpp_rb/inkcpp/inkcpp_test/LabelCondition.cpp +60 -0
  152. data/ext/inkcpp_rb/inkcpp/inkcpp_test/Lists.cpp +144 -0
  153. data/ext/inkcpp_rb/inkcpp/inkcpp_test/LookaheadSafe.cpp +46 -0
  154. data/ext/inkcpp_rb/inkcpp/inkcpp_test/Main.cpp +7 -0
  155. data/ext/inkcpp_rb/inkcpp/inkcpp_test/MoveTo.cpp +95 -0
  156. data/ext/inkcpp_rb/inkcpp/inkcpp_test/NewLines.cpp +76 -0
  157. data/ext/inkcpp_rb/inkcpp/inkcpp_test/NoEarlyTags.cpp +33 -0
  158. data/ext/inkcpp_rb/inkcpp/inkcpp_test/Observer.cpp +245 -0
  159. data/ext/inkcpp_rb/inkcpp/inkcpp_test/Pointer.cpp +191 -0
  160. data/ext/inkcpp_rb/inkcpp/inkcpp_test/Restorable.cpp +294 -0
  161. data/ext/inkcpp_rb/inkcpp/inkcpp_test/SpaceAfterBracketChoice.cpp +45 -0
  162. data/ext/inkcpp_rb/inkcpp/inkcpp_test/Stack.cpp +224 -0
  163. data/ext/inkcpp_rb/inkcpp/inkcpp_test/Tags.cpp +131 -0
  164. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ThirdTierChoiceAfterBrackets.cpp +38 -0
  165. data/ext/inkcpp_rb/inkcpp/inkcpp_test/UTF8.cpp +56 -0
  166. data/ext/inkcpp_rb/inkcpp/inkcpp_test/Value.cpp +210 -0
  167. data/ext/inkcpp_rb/inkcpp/inkcpp_test/catch.hpp +17970 -0
  168. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/AHF.ink +7 -0
  169. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/ChoiceBracketStory.ink +7 -0
  170. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/EmptyStringForDivert.ink +13 -0
  171. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/ExternalFunctionsExecuteProperly.ink +11 -0
  172. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/FallBack.ink +15 -0
  173. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/GlobalStory.ink +9 -0
  174. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/LabelConditionStory.ink +5 -0
  175. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/LinesStory.ink +42 -0
  176. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/ListLogicStory.ink +40 -0
  177. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/ListStory.ink +8 -0
  178. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/LookaheadSafe.ink +14 -0
  179. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/MoveTo.ink +36 -0
  180. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/NoEarlyTags.ink +19 -0
  181. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/ObserverStory.ink +8 -0
  182. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/SimpleStoryFlow.ink +65 -0
  183. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/TagsStory.ink +22 -0
  184. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/TheIntercept.ink +1686 -0
  185. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/ThirdTierChoiceAfterBracketsStory.ink +13 -0
  186. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/UTF-8-demo.txt +212 -0
  187. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/UTF8Story.ink +218 -0
  188. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/simple-1.1.1-inklecate.json +154 -0
  189. data/ext/inkcpp_rb/inkcpp/inkcpp_test/ink/simple-1.1.1-inky.json +160 -0
  190. data/ext/inkcpp_rb/inkcpp/notes/ArchitectureNotes.md +54 -0
  191. data/ext/inkcpp_rb/inkcpp/notes/ListNotes.md +69 -0
  192. data/ext/inkcpp_rb/inkcpp/notes/OperationNotes.md +35 -0
  193. data/ext/inkcpp_rb/inkcpp/notes/TagsNotes.md +24 -0
  194. data/ext/inkcpp_rb/inkcpp/notes/WhitespaceNotes.md +28 -0
  195. data/ext/inkcpp_rb/inkcpp/proofing/README.md +3 -0
  196. data/ext/inkcpp_rb/inkcpp/proofing/inkcpp_runtime_driver +12 -0
  197. data/ext/inkcpp_rb/inkcpp/pyproject.toml +63 -0
  198. data/ext/inkcpp_rb/inkcpp/setup.py +166 -0
  199. data/ext/inkcpp_rb/inkcpp/shared/CMakeLists.txt +14 -0
  200. data/ext/inkcpp_rb/inkcpp/shared/private/command.h +172 -0
  201. data/ext/inkcpp_rb/inkcpp/shared/private/header.h +46 -0
  202. data/ext/inkcpp_rb/inkcpp/shared/public/config.h +53 -0
  203. data/ext/inkcpp_rb/inkcpp/shared/public/system.h +307 -0
  204. data/ext/inkcpp_rb/inkcpp/shared/public/version.h +14 -0
  205. data/ext/inkcpp_rb/inkcpp/tests/TestAllSequenceTypes.ink +59 -0
  206. data/ext/inkcpp_rb/inkcpp/tests/TestArithmetic.ink +17 -0
  207. data/ext/inkcpp_rb/inkcpp/tests/TestBasicStringLiterals.ink +8 -0
  208. data/ext/inkcpp_rb/inkcpp/tests/TestBasicTunnel.ink +10 -0
  209. data/ext/inkcpp_rb/inkcpp/tests/TestBlanksInInlineSequences.ink +51 -0
  210. data/ext/inkcpp_rb/inkcpp/tests/TestCallStackEvaluation.ink +15 -0
  211. data/ext/inkcpp_rb/inkcpp/tests/TestChoiceCount.ink +15 -0
  212. data/ext/inkcpp_rb/inkcpp/tests/TestChoiceDivertsToDone.ink +6 -0
  213. data/ext/inkcpp_rb/inkcpp/tests/TestChoiceWithBracketsOnly.ink +9 -0
  214. data/ext/inkcpp_rb/inkcpp/tests/TestCompareDivertTargets.ink +26 -0
  215. data/ext/inkcpp_rb/inkcpp/tests/TestComplexTunnels.ink +22 -0
  216. data/ext/inkcpp_rb/inkcpp/tests/TestConditionalChoiceInWeave.ink +19 -0
  217. data/ext/inkcpp_rb/inkcpp/tests/TestTunnelOnwardsAfterTunnel.ink +17 -0
  218. data/ext/inkcpp_rb/inkcpp/unreal/CMakeLists.txt +51 -0
  219. data/ext/inkcpp_rb/inkcpp/unreal/UE_example.ink +92 -0
  220. data/ext/inkcpp_rb/inkcpp/unreal/blueprint_filter.js +377 -0
  221. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Resources/Icon128.png +0 -0
  222. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/Private/InkAsset.cpp +47 -0
  223. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/Private/InkChoice.cpp +40 -0
  224. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/Private/InkList.cpp +86 -0
  225. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/Private/InkRuntime.cpp +265 -0
  226. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/Private/InkThread.cpp +239 -0
  227. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/Private/InkVar.cpp +143 -0
  228. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/Private/TagList.cpp +95 -0
  229. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/Private/inkcpp.cpp +13 -0
  230. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/Public/InkAsset.h +50 -0
  231. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/Public/InkChoice.h +58 -0
  232. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/Public/InkDelegates.h +139 -0
  233. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/Public/InkList.h +102 -0
  234. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/Public/InkRuntime.h +177 -0
  235. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/Public/InkSnapshot.h +30 -0
  236. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/Public/InkThread.h +215 -0
  237. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/Public/InkVar.h +245 -0
  238. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/Public/TagList.h +77 -0
  239. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/Public/inkcpp.h +217 -0
  240. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp/inkcpp.Build.cs +62 -0
  241. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp_editor/Private/InkAssetFactory.cpp +237 -0
  242. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp_editor/Private/InkAssetFactory.h +43 -0
  243. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp_editor/Private/inkcpp_editor.cpp +13 -0
  244. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp_editor/Private/inklecate_cmd.cpp.in +24 -0
  245. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp_editor/Public/inkcpp_editor.h +9 -0
  246. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/Source/inkcpp_editor/inkcpp_editor.Build.cs +61 -0
  247. data/ext/inkcpp_rb/inkcpp/unreal/inkcpp/inkcpp.uplugin +44 -0
  248. data/ext/inkcpp_rb/inkcpp/unreal/render.css +1 -0
  249. data/ext/inkcpp_rb/inkcpp_rb.cpp +321 -0
  250. data/inkcpp_rb.gemspec +54 -0
  251. data/rbi/inkcpp_rb.rbi +211 -0
  252. data/sorbet/config +4 -0
  253. data/sorbet/rbi/annotations/.gitattributes +1 -0
  254. data/sorbet/rbi/annotations/minitest.rbi +119 -0
  255. data/sorbet/rbi/gems/.gitattributes +1 -0
  256. data/sorbet/rbi/gems/benchmark@0.4.0.rbi +618 -0
  257. data/sorbet/rbi/gems/erubi@1.13.1.rbi +155 -0
  258. data/sorbet/rbi/gems/minitest@5.25.4.rbi +1547 -0
  259. data/sorbet/rbi/gems/netrc@0.11.0.rbi +159 -0
  260. data/sorbet/rbi/gems/parallel@1.26.3.rbi +291 -0
  261. data/sorbet/rbi/gems/prism@1.3.0.rbi +40040 -0
  262. data/sorbet/rbi/gems/rake-compiler@1.2.8.rbi +9 -0
  263. data/sorbet/rbi/gems/rake@13.2.1.rbi +3033 -0
  264. data/sorbet/rbi/gems/rbi@0.2.2.rbi +4527 -0
  265. data/sorbet/rbi/gems/rice@4.3.3.rbi +44 -0
  266. data/sorbet/rbi/gems/spoom@1.5.0.rbi +4932 -0
  267. data/sorbet/rbi/gems/tapioca@0.16.7.rbi +3611 -0
  268. data/sorbet/rbi/gems/thor@1.3.2.rbi +4378 -0
  269. data/sorbet/rbi/gems/yard-sorbet@0.9.0.rbi +435 -0
  270. data/sorbet/rbi/gems/yard@0.9.37.rbi +18379 -0
  271. data/sorbet/tapioca/config.yml +13 -0
  272. data/sorbet/tapioca/require.rb +4 -0
  273. metadata +400 -0
@@ -0,0 +1,618 @@
1
+ # typed: true
2
+
3
+ # DO NOT EDIT MANUALLY
4
+ # This is an autogenerated file for types exported from the `benchmark` gem.
5
+ # Please instead update this file by running `bin/tapioca gem benchmark`.
6
+
7
+
8
+ # The Benchmark module provides methods to measure and report the time
9
+ # used to execute Ruby code.
10
+ #
11
+ # * Measure the time to construct the string given by the expression
12
+ # <code>"a"*1_000_000_000</code>:
13
+ #
14
+ # require 'benchmark'
15
+ #
16
+ # puts Benchmark.measure { "a"*1_000_000_000 }
17
+ #
18
+ # On my machine (OSX 10.8.3 on i5 1.7 GHz) this generates:
19
+ #
20
+ # 0.350000 0.400000 0.750000 ( 0.835234)
21
+ #
22
+ # This report shows the user CPU time, system CPU time, the sum of
23
+ # the user and system CPU times, and the elapsed real time. The unit
24
+ # of time is seconds.
25
+ #
26
+ # * Do some experiments sequentially using the #bm method:
27
+ #
28
+ # require 'benchmark'
29
+ #
30
+ # n = 5000000
31
+ # Benchmark.bm do |x|
32
+ # x.report { for i in 1..n; a = "1"; end }
33
+ # x.report { n.times do ; a = "1"; end }
34
+ # x.report { 1.upto(n) do ; a = "1"; end }
35
+ # end
36
+ #
37
+ # The result:
38
+ #
39
+ # user system total real
40
+ # 1.010000 0.000000 1.010000 ( 1.014479)
41
+ # 1.000000 0.000000 1.000000 ( 0.998261)
42
+ # 0.980000 0.000000 0.980000 ( 0.981335)
43
+ #
44
+ # * Continuing the previous example, put a label in each report:
45
+ #
46
+ # require 'benchmark'
47
+ #
48
+ # n = 5000000
49
+ # Benchmark.bm(7) do |x|
50
+ # x.report("for:") { for i in 1..n; a = "1"; end }
51
+ # x.report("times:") { n.times do ; a = "1"; end }
52
+ # x.report("upto:") { 1.upto(n) do ; a = "1"; end }
53
+ # end
54
+ #
55
+ # The result:
56
+ #
57
+ # user system total real
58
+ # for: 1.010000 0.000000 1.010000 ( 1.015688)
59
+ # times: 1.000000 0.000000 1.000000 ( 1.003611)
60
+ # upto: 1.030000 0.000000 1.030000 ( 1.028098)
61
+ #
62
+ # * The times for some benchmarks depend on the order in which items
63
+ # are run. These differences are due to the cost of memory
64
+ # allocation and garbage collection. To avoid these discrepancies,
65
+ # the #bmbm method is provided. For example, to compare ways to
66
+ # sort an array of floats:
67
+ #
68
+ # require 'benchmark'
69
+ #
70
+ # array = (1..1000000).map { rand }
71
+ #
72
+ # Benchmark.bmbm do |x|
73
+ # x.report("sort!") { array.dup.sort! }
74
+ # x.report("sort") { array.dup.sort }
75
+ # end
76
+ #
77
+ # The result:
78
+ #
79
+ # Rehearsal -----------------------------------------
80
+ # sort! 1.490000 0.010000 1.500000 ( 1.490520)
81
+ # sort 1.460000 0.000000 1.460000 ( 1.463025)
82
+ # -------------------------------- total: 2.960000sec
83
+ #
84
+ # user system total real
85
+ # sort! 1.460000 0.000000 1.460000 ( 1.460465)
86
+ # sort 1.450000 0.010000 1.460000 ( 1.448327)
87
+ #
88
+ # * Report statistics of sequential experiments with unique labels,
89
+ # using the #benchmark method:
90
+ #
91
+ # require 'benchmark'
92
+ # include Benchmark # we need the CAPTION and FORMAT constants
93
+ #
94
+ # n = 5000000
95
+ # Benchmark.benchmark(CAPTION, 7, FORMAT, ">total:", ">avg:") do |x|
96
+ # tf = x.report("for:") { for i in 1..n; a = "1"; end }
97
+ # tt = x.report("times:") { n.times do ; a = "1"; end }
98
+ # tu = x.report("upto:") { 1.upto(n) do ; a = "1"; end }
99
+ # [tf+tt+tu, (tf+tt+tu)/3]
100
+ # end
101
+ #
102
+ # The result:
103
+ #
104
+ # user system total real
105
+ # for: 0.950000 0.000000 0.950000 ( 0.952039)
106
+ # times: 0.980000 0.000000 0.980000 ( 0.984938)
107
+ # upto: 0.950000 0.000000 0.950000 ( 0.946787)
108
+ # >total: 2.880000 0.000000 2.880000 ( 2.883764)
109
+ # >avg: 0.960000 0.000000 0.960000 ( 0.961255)
110
+ #
111
+ # source://benchmark//lib/benchmark.rb#122
112
+ module Benchmark
113
+ private
114
+
115
+ # Invokes the block with a Benchmark::Report object, which
116
+ # may be used to collect and report on the results of individual
117
+ # benchmark tests. Reserves +label_width+ leading spaces for
118
+ # labels on each line. Prints +caption+ at the top of the
119
+ # report, and uses +format+ to format each line.
120
+ # (Note: +caption+ must contain a terminating newline character,
121
+ # see the default Benchmark::Tms::CAPTION for an example.)
122
+ #
123
+ # Returns an array of Benchmark::Tms objects.
124
+ #
125
+ # If the block returns an array of
126
+ # Benchmark::Tms objects, these will be used to format
127
+ # additional lines of output. If +labels+ parameter are
128
+ # given, these are used to label these extra lines.
129
+ #
130
+ # _Note_: Other methods provide a simpler interface to this one, and are
131
+ # suitable for nearly all benchmarking requirements. See the examples in
132
+ # Benchmark, and the #bm and #bmbm methods.
133
+ #
134
+ # Example:
135
+ #
136
+ # require 'benchmark'
137
+ # include Benchmark # we need the CAPTION and FORMAT constants
138
+ #
139
+ # n = 5000000
140
+ # Benchmark.benchmark(CAPTION, 7, FORMAT, ">total:", ">avg:") do |x|
141
+ # tf = x.report("for:") { for i in 1..n; a = "1"; end }
142
+ # tt = x.report("times:") { n.times do ; a = "1"; end }
143
+ # tu = x.report("upto:") { 1.upto(n) do ; a = "1"; end }
144
+ # [tf+tt+tu, (tf+tt+tu)/3]
145
+ # end
146
+ #
147
+ # Generates:
148
+ #
149
+ # user system total real
150
+ # for: 0.970000 0.000000 0.970000 ( 0.970493)
151
+ # times: 0.990000 0.000000 0.990000 ( 0.989542)
152
+ # upto: 0.970000 0.000000 0.970000 ( 0.972854)
153
+ # >total: 2.930000 0.000000 2.930000 ( 2.932889)
154
+ # >avg: 0.976667 0.000000 0.976667 ( 0.977630)
155
+ #
156
+ # source://benchmark//lib/benchmark.rb#170
157
+ def benchmark(caption = T.unsafe(nil), label_width = T.unsafe(nil), format = T.unsafe(nil), *labels); end
158
+
159
+ # A simple interface to the #benchmark method, #bm generates sequential
160
+ # reports with labels. +label_width+ and +labels+ parameters have the same
161
+ # meaning as for #benchmark.
162
+ #
163
+ # require 'benchmark'
164
+ #
165
+ # n = 5000000
166
+ # Benchmark.bm(7) do |x|
167
+ # x.report("for:") { for i in 1..n; a = "1"; end }
168
+ # x.report("times:") { n.times do ; a = "1"; end }
169
+ # x.report("upto:") { 1.upto(n) do ; a = "1"; end }
170
+ # end
171
+ #
172
+ # Generates:
173
+ #
174
+ # user system total real
175
+ # for: 0.960000 0.000000 0.960000 ( 0.957966)
176
+ # times: 0.960000 0.000000 0.960000 ( 0.960423)
177
+ # upto: 0.950000 0.000000 0.950000 ( 0.954864)
178
+ #
179
+ # source://benchmark//lib/benchmark.rb#215
180
+ def bm(label_width = T.unsafe(nil), *labels, &blk); end
181
+
182
+ # Sometimes benchmark results are skewed because code executed
183
+ # earlier encounters different garbage collection overheads than
184
+ # that run later. #bmbm attempts to minimize this effect by running
185
+ # the tests twice, the first time as a rehearsal in order to get the
186
+ # runtime environment stable, the second time for
187
+ # real. GC.start is executed before the start of each of
188
+ # the real timings; the cost of this is not included in the
189
+ # timings. In reality, though, there's only so much that #bmbm can
190
+ # do, and the results are not guaranteed to be isolated from garbage
191
+ # collection and other effects.
192
+ #
193
+ # Because #bmbm takes two passes through the tests, it can
194
+ # calculate the required label width.
195
+ #
196
+ # require 'benchmark'
197
+ #
198
+ # array = (1..1000000).map { rand }
199
+ #
200
+ # Benchmark.bmbm do |x|
201
+ # x.report("sort!") { array.dup.sort! }
202
+ # x.report("sort") { array.dup.sort }
203
+ # end
204
+ #
205
+ # Generates:
206
+ #
207
+ # Rehearsal -----------------------------------------
208
+ # sort! 1.440000 0.010000 1.450000 ( 1.446833)
209
+ # sort 1.440000 0.000000 1.440000 ( 1.448257)
210
+ # -------------------------------- total: 2.890000sec
211
+ #
212
+ # user system total real
213
+ # sort! 1.460000 0.000000 1.460000 ( 1.458065)
214
+ # sort 1.450000 0.000000 1.450000 ( 1.455963)
215
+ #
216
+ # #bmbm yields a Benchmark::Job object and returns an array of
217
+ # Benchmark::Tms objects.
218
+ #
219
+ # source://benchmark//lib/benchmark.rb#257
220
+ def bmbm(width = T.unsafe(nil)); end
221
+
222
+ # Returns the time used to execute the given block as a
223
+ # Benchmark::Tms object. Takes +label+ option.
224
+ #
225
+ # require 'benchmark'
226
+ #
227
+ # n = 1000000
228
+ #
229
+ # time = Benchmark.measure do
230
+ # n.times { a = "1" }
231
+ # end
232
+ # puts time
233
+ #
234
+ # Generates:
235
+ #
236
+ # 0.220000 0.000000 0.220000 ( 0.227313)
237
+ #
238
+ # source://benchmark//lib/benchmark.rb#302
239
+ def measure(label = T.unsafe(nil)); end
240
+
241
+ # Returns the elapsed real time used to execute the given block.
242
+ # The unit of time is seconds.
243
+ #
244
+ # Benchmark.realtime { "a" * 1_000_000_000 }
245
+ # #=> 0.5098029999935534
246
+ #
247
+ # source://benchmark//lib/benchmark.rb#321
248
+ def realtime; end
249
+
250
+ class << self
251
+ # Invokes the block with a Benchmark::Report object, which
252
+ # may be used to collect and report on the results of individual
253
+ # benchmark tests. Reserves +label_width+ leading spaces for
254
+ # labels on each line. Prints +caption+ at the top of the
255
+ # report, and uses +format+ to format each line.
256
+ # (Note: +caption+ must contain a terminating newline character,
257
+ # see the default Benchmark::Tms::CAPTION for an example.)
258
+ #
259
+ # Returns an array of Benchmark::Tms objects.
260
+ #
261
+ # If the block returns an array of
262
+ # Benchmark::Tms objects, these will be used to format
263
+ # additional lines of output. If +labels+ parameter are
264
+ # given, these are used to label these extra lines.
265
+ #
266
+ # _Note_: Other methods provide a simpler interface to this one, and are
267
+ # suitable for nearly all benchmarking requirements. See the examples in
268
+ # Benchmark, and the #bm and #bmbm methods.
269
+ #
270
+ # Example:
271
+ #
272
+ # require 'benchmark'
273
+ # include Benchmark # we need the CAPTION and FORMAT constants
274
+ #
275
+ # n = 5000000
276
+ # Benchmark.benchmark(CAPTION, 7, FORMAT, ">total:", ">avg:") do |x|
277
+ # tf = x.report("for:") { for i in 1..n; a = "1"; end }
278
+ # tt = x.report("times:") { n.times do ; a = "1"; end }
279
+ # tu = x.report("upto:") { 1.upto(n) do ; a = "1"; end }
280
+ # [tf+tt+tu, (tf+tt+tu)/3]
281
+ # end
282
+ #
283
+ # Generates:
284
+ #
285
+ # user system total real
286
+ # for: 0.970000 0.000000 0.970000 ( 0.970493)
287
+ # times: 0.990000 0.000000 0.990000 ( 0.989542)
288
+ # upto: 0.970000 0.000000 0.970000 ( 0.972854)
289
+ # >total: 2.930000 0.000000 2.930000 ( 2.932889)
290
+ # >avg: 0.976667 0.000000 0.976667 ( 0.977630)
291
+ #
292
+ # source://benchmark//lib/benchmark.rb#170
293
+ def benchmark(caption = T.unsafe(nil), label_width = T.unsafe(nil), format = T.unsafe(nil), *labels); end
294
+
295
+ # A simple interface to the #benchmark method, #bm generates sequential
296
+ # reports with labels. +label_width+ and +labels+ parameters have the same
297
+ # meaning as for #benchmark.
298
+ #
299
+ # require 'benchmark'
300
+ #
301
+ # n = 5000000
302
+ # Benchmark.bm(7) do |x|
303
+ # x.report("for:") { for i in 1..n; a = "1"; end }
304
+ # x.report("times:") { n.times do ; a = "1"; end }
305
+ # x.report("upto:") { 1.upto(n) do ; a = "1"; end }
306
+ # end
307
+ #
308
+ # Generates:
309
+ #
310
+ # user system total real
311
+ # for: 0.960000 0.000000 0.960000 ( 0.957966)
312
+ # times: 0.960000 0.000000 0.960000 ( 0.960423)
313
+ # upto: 0.950000 0.000000 0.950000 ( 0.954864)
314
+ #
315
+ # source://benchmark//lib/benchmark.rb#215
316
+ def bm(label_width = T.unsafe(nil), *labels, &blk); end
317
+
318
+ # Sometimes benchmark results are skewed because code executed
319
+ # earlier encounters different garbage collection overheads than
320
+ # that run later. #bmbm attempts to minimize this effect by running
321
+ # the tests twice, the first time as a rehearsal in order to get the
322
+ # runtime environment stable, the second time for
323
+ # real. GC.start is executed before the start of each of
324
+ # the real timings; the cost of this is not included in the
325
+ # timings. In reality, though, there's only so much that #bmbm can
326
+ # do, and the results are not guaranteed to be isolated from garbage
327
+ # collection and other effects.
328
+ #
329
+ # Because #bmbm takes two passes through the tests, it can
330
+ # calculate the required label width.
331
+ #
332
+ # require 'benchmark'
333
+ #
334
+ # array = (1..1000000).map { rand }
335
+ #
336
+ # Benchmark.bmbm do |x|
337
+ # x.report("sort!") { array.dup.sort! }
338
+ # x.report("sort") { array.dup.sort }
339
+ # end
340
+ #
341
+ # Generates:
342
+ #
343
+ # Rehearsal -----------------------------------------
344
+ # sort! 1.440000 0.010000 1.450000 ( 1.446833)
345
+ # sort 1.440000 0.000000 1.440000 ( 1.448257)
346
+ # -------------------------------- total: 2.890000sec
347
+ #
348
+ # user system total real
349
+ # sort! 1.460000 0.000000 1.460000 ( 1.458065)
350
+ # sort 1.450000 0.000000 1.450000 ( 1.455963)
351
+ #
352
+ # #bmbm yields a Benchmark::Job object and returns an array of
353
+ # Benchmark::Tms objects.
354
+ #
355
+ # source://benchmark//lib/benchmark.rb#257
356
+ def bmbm(width = T.unsafe(nil)); end
357
+
358
+ # Returns the time used to execute the given block as a
359
+ # Benchmark::Tms object. Takes +label+ option.
360
+ #
361
+ # require 'benchmark'
362
+ #
363
+ # n = 1000000
364
+ #
365
+ # time = Benchmark.measure do
366
+ # n.times { a = "1" }
367
+ # end
368
+ # puts time
369
+ #
370
+ # Generates:
371
+ #
372
+ # 0.220000 0.000000 0.220000 ( 0.227313)
373
+ #
374
+ # source://benchmark//lib/benchmark.rb#302
375
+ def measure(label = T.unsafe(nil)); end
376
+
377
+ # Returns the elapsed real time used to execute the given block.
378
+ # The unit of time is seconds.
379
+ #
380
+ # Benchmark.realtime { "a" * 1_000_000_000 }
381
+ # #=> 0.5098029999935534
382
+ #
383
+ # source://benchmark//lib/benchmark.rb#321
384
+ def realtime; end
385
+ end
386
+ end
387
+
388
+ # A Job is a sequence of labelled blocks to be processed by the
389
+ # Benchmark.bmbm method. It is of little direct interest to the user.
390
+ #
391
+ # source://benchmark//lib/benchmark.rb#333
392
+ class Benchmark::Job
393
+ # Returns an initialized Job instance.
394
+ # Usually, one doesn't call this method directly, as new
395
+ # Job objects are created by the #bmbm method.
396
+ # +width+ is a initial value for the label offset used in formatting;
397
+ # the #bmbm method passes its +width+ argument to this constructor.
398
+ #
399
+ # @return [Job] a new instance of Job
400
+ #
401
+ # source://benchmark//lib/benchmark.rb#341
402
+ def initialize(width); end
403
+
404
+ # Registers the given label and block pair in the job list.
405
+ #
406
+ # @raise [ArgumentError]
407
+ #
408
+ # source://benchmark//lib/benchmark.rb#349
409
+ def item(label = T.unsafe(nil), &blk); end
410
+
411
+ # An array of 2-element arrays, consisting of label and block pairs.
412
+ #
413
+ # source://benchmark//lib/benchmark.rb#361
414
+ def list; end
415
+
416
+ # Registers the given label and block pair in the job list.
417
+ #
418
+ # @raise [ArgumentError]
419
+ #
420
+ # source://benchmark//lib/benchmark.rb#349
421
+ def report(label = T.unsafe(nil), &blk); end
422
+
423
+ # Length of the widest label in the #list.
424
+ #
425
+ # source://benchmark//lib/benchmark.rb#364
426
+ def width; end
427
+ end
428
+
429
+ # This class is used by the Benchmark.benchmark and Benchmark.bm methods.
430
+ # It is of little direct interest to the user.
431
+ #
432
+ # source://benchmark//lib/benchmark.rb#371
433
+ class Benchmark::Report
434
+ # Returns an initialized Report instance.
435
+ # Usually, one doesn't call this method directly, as new
436
+ # Report objects are created by the #benchmark and #bm methods.
437
+ # +width+ and +format+ are the label offset and
438
+ # format string used by Tms#format.
439
+ #
440
+ # @return [Report] a new instance of Report
441
+ #
442
+ # source://benchmark//lib/benchmark.rb#379
443
+ def initialize(width = T.unsafe(nil), format = T.unsafe(nil)); end
444
+
445
+ # An array of Benchmark::Tms objects representing each item.
446
+ #
447
+ # source://benchmark//lib/benchmark.rb#398
448
+ def format; end
449
+
450
+ # Prints the +label+ and measured time for the block,
451
+ # formatted by +format+. See Tms#format for the
452
+ # formatting rules.
453
+ #
454
+ # source://benchmark//lib/benchmark.rb#388
455
+ def item(label = T.unsafe(nil), *format, &blk); end
456
+
457
+ # An array of Benchmark::Tms objects representing each item.
458
+ #
459
+ # source://benchmark//lib/benchmark.rb#398
460
+ def list; end
461
+
462
+ # Prints the +label+ and measured time for the block,
463
+ # formatted by +format+. See Tms#format for the
464
+ # formatting rules.
465
+ #
466
+ # source://benchmark//lib/benchmark.rb#388
467
+ def report(label = T.unsafe(nil), *format, &blk); end
468
+
469
+ # An array of Benchmark::Tms objects representing each item.
470
+ #
471
+ # source://benchmark//lib/benchmark.rb#398
472
+ def width; end
473
+ end
474
+
475
+ # A data object, representing the times associated with a benchmark
476
+ # measurement.
477
+ #
478
+ # source://benchmark//lib/benchmark.rb#407
479
+ class Benchmark::Tms
480
+ # Returns an initialized Tms object which has
481
+ # +utime+ as the user CPU time, +stime+ as the system CPU time,
482
+ # +cutime+ as the children's user CPU time, +cstime+ as the children's
483
+ # system CPU time, +real+ as the elapsed real time and +label+ as the label.
484
+ #
485
+ # @return [Tms] a new instance of Tms
486
+ #
487
+ # source://benchmark//lib/benchmark.rb#442
488
+ def initialize(utime = T.unsafe(nil), stime = T.unsafe(nil), cutime = T.unsafe(nil), cstime = T.unsafe(nil), real = T.unsafe(nil), label = T.unsafe(nil)); end
489
+
490
+ # Returns a new Tms object obtained by memberwise multiplication
491
+ # of the individual times for this Tms object by +x+.
492
+ #
493
+ # source://benchmark//lib/benchmark.rb#490
494
+ def *(x); end
495
+
496
+ # Returns a new Tms object obtained by memberwise summation
497
+ # of the individual times for this Tms object with those of the +other+
498
+ # Tms object.
499
+ # This method and #/() are useful for taking statistics.
500
+ #
501
+ # source://benchmark//lib/benchmark.rb#477
502
+ def +(other); end
503
+
504
+ # Returns a new Tms object obtained by memberwise subtraction
505
+ # of the individual times for the +other+ Tms object from those of this
506
+ # Tms object.
507
+ #
508
+ # source://benchmark//lib/benchmark.rb#484
509
+ def -(other); end
510
+
511
+ # Returns a new Tms object obtained by memberwise division
512
+ # of the individual times for this Tms object by +x+.
513
+ # This method and #+() are useful for taking statistics.
514
+ #
515
+ # source://benchmark//lib/benchmark.rb#497
516
+ def /(x); end
517
+
518
+ # Returns a new Tms object whose times are the sum of the times for this
519
+ # Tms object, plus the time required to execute the code block (+blk+).
520
+ #
521
+ # source://benchmark//lib/benchmark.rb#451
522
+ def add(&blk); end
523
+
524
+ # An in-place version of #add.
525
+ # Changes the times of this Tms object by making it the sum of the times
526
+ # for this Tms object, plus the time required to execute
527
+ # the code block (+blk+).
528
+ #
529
+ # source://benchmark//lib/benchmark.rb#461
530
+ def add!(&blk); end
531
+
532
+ # System CPU time of children
533
+ #
534
+ # source://benchmark//lib/benchmark.rb#425
535
+ def cstime; end
536
+
537
+ # User CPU time of children
538
+ #
539
+ # source://benchmark//lib/benchmark.rb#422
540
+ def cutime; end
541
+
542
+ # Returns the contents of this Tms object as
543
+ # a formatted string, according to a +format+ string
544
+ # like that passed to Kernel.format. In addition, #format
545
+ # accepts the following extensions:
546
+ #
547
+ # <tt>%u</tt>:: Replaced by the user CPU time, as reported by Tms#utime.
548
+ # <tt>%y</tt>:: Replaced by the system CPU time, as reported by #stime (Mnemonic: y of "s*y*stem")
549
+ # <tt>%U</tt>:: Replaced by the children's user CPU time, as reported by Tms#cutime
550
+ # <tt>%Y</tt>:: Replaced by the children's system CPU time, as reported by Tms#cstime
551
+ # <tt>%t</tt>:: Replaced by the total CPU time, as reported by Tms#total
552
+ # <tt>%r</tt>:: Replaced by the elapsed real time, as reported by Tms#real
553
+ # <tt>%n</tt>:: Replaced by the label string, as reported by Tms#label (Mnemonic: n of "*n*ame")
554
+ #
555
+ # If +format+ is not given, FORMAT is used as default value, detailing the
556
+ # user, system and real elapsed time.
557
+ #
558
+ # source://benchmark//lib/benchmark.rb#516
559
+ def format(format = T.unsafe(nil), *args); end
560
+
561
+ # Label
562
+ #
563
+ # source://benchmark//lib/benchmark.rb#434
564
+ def label; end
565
+
566
+ # Elapsed real time
567
+ #
568
+ # source://benchmark//lib/benchmark.rb#428
569
+ def real; end
570
+
571
+ # System CPU time
572
+ #
573
+ # source://benchmark//lib/benchmark.rb#419
574
+ def stime; end
575
+
576
+ # Returns a new 6-element array, consisting of the
577
+ # label, user CPU time, system CPU time, children's
578
+ # user CPU time, children's system CPU time and elapsed
579
+ # real time.
580
+ #
581
+ # source://benchmark//lib/benchmark.rb#541
582
+ def to_a; end
583
+
584
+ # Returns a hash containing the same data as `to_a`.
585
+ #
586
+ # source://benchmark//lib/benchmark.rb#548
587
+ def to_h; end
588
+
589
+ # Same as #format.
590
+ #
591
+ # source://benchmark//lib/benchmark.rb#531
592
+ def to_s; end
593
+
594
+ # Total time, that is +utime+ + +stime+ + +cutime+ + +cstime+
595
+ #
596
+ # source://benchmark//lib/benchmark.rb#431
597
+ def total; end
598
+
599
+ # User CPU time
600
+ #
601
+ # source://benchmark//lib/benchmark.rb#416
602
+ def utime; end
603
+
604
+ protected
605
+
606
+ # Returns a new Tms object obtained by memberwise operation +op+
607
+ # of the individual times for this Tms object with those of the other
608
+ # Tms object (+x+).
609
+ #
610
+ # +op+ can be a mathematical operation such as <tt>+</tt>, <tt>-</tt>,
611
+ # <tt>*</tt>, <tt>/</tt>
612
+ #
613
+ # source://benchmark//lib/benchmark.rb#569
614
+ def memberwise(op, x); end
615
+ end
616
+
617
+ # source://benchmark//lib/benchmark.rb#124
618
+ Benchmark::VERSION = T.let(T.unsafe(nil), String)