functionalscript 0.3.4 → 0.3.6

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 (457) hide show
  1. package/com/cpp/module.f.d.ts +10 -0
  2. package/com/cpp/module.f.js +107 -0
  3. package/com/cpp/test.f.d.ts +2 -0
  4. package/com/cpp/{test.f.ts → test.f.js} +9 -11
  5. package/com/cpp/testlib.f.d.ts +2 -0
  6. package/com/cpp/testlib.f.js +5 -0
  7. package/com/cs/module.f.d.ts +12 -0
  8. package/com/cs/module.f.js +80 -0
  9. package/com/cs/test.f.d.ts +2 -0
  10. package/com/cs/{test.f.ts → test.f.js} +9 -11
  11. package/com/cs/testlib.f.d.ts +2 -0
  12. package/com/cs/testlib.f.js +5 -0
  13. package/com/rust/module.f.d.ts +15 -0
  14. package/com/rust/module.f.js +169 -0
  15. package/com/rust/test.f.d.ts +2 -0
  16. package/com/rust/{test.f.ts → test.f.js} +7 -7
  17. package/com/rust/testlib.f.d.ts +2 -0
  18. package/com/rust/testlib.f.js +5 -0
  19. package/com/test/build.f.d.ts +20 -0
  20. package/com/test/build.f.js +58 -0
  21. package/com/types/module.f.d.ts +28 -0
  22. package/com/types/module.f.js +8 -0
  23. package/com/types/testlib.f.d.ts +44 -0
  24. package/com/types/{testlib.f.ts → testlib.f.js} +2 -3
  25. package/commonjs/build/module.f.d.ts +6 -0
  26. package/commonjs/build/module.f.js +69 -0
  27. package/commonjs/build/test.f.d.ts +2 -0
  28. package/commonjs/build/test.f.js +96 -0
  29. package/commonjs/module/function/{module.f.ts → module.f.d.ts} +5 -10
  30. package/commonjs/module/function/module.f.js +4 -0
  31. package/commonjs/module/module.f.d.ts +18 -0
  32. package/commonjs/module/module.f.js +12 -0
  33. package/commonjs/module.f.d.ts +6 -0
  34. package/commonjs/module.f.js +1 -0
  35. package/commonjs/package/dependencies/module.f.d.ts +7 -0
  36. package/commonjs/package/dependencies/module.f.js +13 -0
  37. package/commonjs/package/dependencies/test.f.d.ts +2 -0
  38. package/commonjs/package/dependencies/test.f.js +15 -0
  39. package/commonjs/package/module.f.d.ts +17 -0
  40. package/commonjs/package/module.f.js +18 -0
  41. package/commonjs/package/test.f.d.ts +2 -0
  42. package/commonjs/package/test.f.js +27 -0
  43. package/commonjs/path/module.f.d.ts +24 -0
  44. package/commonjs/path/module.f.js +114 -0
  45. package/commonjs/path/test.f.d.ts +25 -0
  46. package/commonjs/path/{test.f.ts → test.f.js} +123 -89
  47. package/crypto/prime_field/module.f.d.ts +43 -0
  48. package/crypto/prime_field/module.f.js +78 -0
  49. package/crypto/prime_field/test.f.d.ts +13 -0
  50. package/crypto/prime_field/test.f.js +149 -0
  51. package/crypto/secp/module.f.d.ts +68 -0
  52. package/crypto/secp/module.f.js +127 -0
  53. package/crypto/secp/test.f.d.ts +5 -0
  54. package/crypto/secp/test.f.js +72 -0
  55. package/crypto/sha2/module.f.d.ts +13 -0
  56. package/crypto/sha2/module.f.js +145 -0
  57. package/crypto/sha2/test.f.d.ts +9 -0
  58. package/crypto/sha2/test.f.js +82 -0
  59. package/dev/module.f.d.ts +1 -0
  60. package/dev/module.f.js +1 -0
  61. package/dev/test/module.f.d.ts +20 -0
  62. package/dev/test/module.f.js +75 -0
  63. package/dev/test.f.d.ts +9 -0
  64. package/dev/{test.f.ts → test.f.js} +22 -24
  65. package/djs/module.f.d.ts +17 -0
  66. package/djs/module.f.js +63 -0
  67. package/djs/parser/module.f.d.ts +12 -0
  68. package/djs/parser/module.f.js +333 -0
  69. package/djs/parser/test.f.d.ts +12 -0
  70. package/djs/parser/test.f.js +717 -0
  71. package/djs/serializer/module.f.d.ts +9 -0
  72. package/djs/serializer/module.f.js +81 -0
  73. package/djs/test/input.f.d.ts +2 -0
  74. package/djs/test/input.f.js +4 -0
  75. package/djs/test/m.f.d.ts +2 -0
  76. package/djs/test/m.f.js +1 -0
  77. package/djs/test.f.d.ts +12 -0
  78. package/djs/test.f.js +84 -0
  79. package/djs/tokenizer/module.f.d.ts +8 -0
  80. package/djs/tokenizer/module.f.js +60 -0
  81. package/djs/tokenizer/test.f.d.ts +7 -0
  82. package/djs/tokenizer/test.f.js +529 -0
  83. package/fsc/module.f.d.ts +5 -0
  84. package/fsc/module.f.js +75 -0
  85. package/fsc/test.f.d.ts +4 -0
  86. package/fsc/test.f.js +19 -0
  87. package/fsm/module.f.d.ts +13 -0
  88. package/fsm/module.f.js +59 -0
  89. package/fsm/test.f.d.ts +5 -0
  90. package/fsm/test.f.js +137 -0
  91. package/html/module.f.d.ts +13 -0
  92. package/html/module.f.js +58 -0
  93. package/html/test.f.d.ts +9 -0
  94. package/html/test.f.js +42 -0
  95. package/issues/test.f.d.ts +16 -0
  96. package/issues/test.f.js +70 -0
  97. package/js/tokenizer/module.f.d.ts +86 -0
  98. package/js/tokenizer/module.f.js +503 -0
  99. package/js/tokenizer/test.f.d.ts +9 -0
  100. package/js/tokenizer/test.f.js +905 -0
  101. package/json/module.f.d.ts +20 -0
  102. package/json/module.f.js +68 -0
  103. package/json/parser/module.f.d.ts +5 -0
  104. package/json/parser/module.f.js +155 -0
  105. package/json/parser/test.f.d.ts +5 -0
  106. package/json/parser/test.f.js +328 -0
  107. package/json/serializer/module.f.d.ts +7 -0
  108. package/json/serializer/module.f.js +21 -0
  109. package/json/serializer/test.f.d.ts +8 -0
  110. package/json/serializer/test.f.js +87 -0
  111. package/json/test.f.d.ts +8 -0
  112. package/json/test.f.js +61 -0
  113. package/json/tokenizer/module.f.d.ts +8 -0
  114. package/json/tokenizer/module.f.js +52 -0
  115. package/json/tokenizer/test.f.d.ts +6 -0
  116. package/json/tokenizer/test.f.js +419 -0
  117. package/nanvm-lib/tests/test.f.d.ts +27 -0
  118. package/nanvm-lib/tests/test.f.js +84 -0
  119. package/nodejs/version/module.f.d.ts +11 -0
  120. package/nodejs/version/module.f.js +16 -0
  121. package/nodejs/version/test.f.d.ts +2 -0
  122. package/nodejs/version/{test.f.ts → test.f.js} +13 -22
  123. package/package.json +9 -5
  124. package/text/ascii/module.f.d.ts +129 -0
  125. package/text/ascii/module.f.js +148 -0
  126. package/text/ascii/test.f.d.ts +4 -0
  127. package/text/ascii/test.f.js +14 -0
  128. package/text/module.f.d.ts +8 -0
  129. package/text/module.f.js +10 -0
  130. package/text/sgr/module.f.d.ts +8 -0
  131. package/text/sgr/module.f.js +8 -0
  132. package/text/test.f.d.ts +2 -0
  133. package/text/test.f.js +18 -0
  134. package/text/utf16/module.f.d.ts +9 -0
  135. package/text/utf16/module.f.js +66 -0
  136. package/text/utf16/test.f.d.ts +6 -0
  137. package/text/utf16/test.f.js +144 -0
  138. package/text/utf8/module.f.d.ts +6 -0
  139. package/text/utf8/module.f.js +112 -0
  140. package/text/utf8/test.f.d.ts +6 -0
  141. package/text/utf8/test.f.js +175 -0
  142. package/types/array/module.f.d.ts +21 -0
  143. package/types/array/module.f.js +23 -0
  144. package/types/array/test.f.d.ts +10 -0
  145. package/types/array/test.f.js +116 -0
  146. package/types/bigfloat/module.f.d.ts +3 -0
  147. package/types/bigfloat/module.f.js +66 -0
  148. package/types/bigfloat/test.f.d.ts +6 -0
  149. package/types/bigfloat/test.f.js +349 -0
  150. package/types/bigint/module.f.d.ts +54 -0
  151. package/types/bigint/{module.f.ts → module.f.js} +42 -65
  152. package/types/bigint/test.f.d.ts +16 -0
  153. package/types/bigint/test.f.js +199 -0
  154. package/types/bit_vec/module.f.d.ts +134 -0
  155. package/types/bit_vec/{module.f.ts → module.f.js} +47 -65
  156. package/types/bit_vec/test.f.d.ts +22 -0
  157. package/types/bit_vec/test.f.js +210 -0
  158. package/types/btree/find/module.f.d.ts +20 -0
  159. package/types/btree/find/module.f.js +84 -0
  160. package/types/btree/find/test.f.d.ts +2 -0
  161. package/types/btree/find/test.f.js +152 -0
  162. package/types/btree/module.f.d.ts +4 -0
  163. package/types/btree/module.f.js +31 -0
  164. package/types/btree/remove/module.f.d.ts +4 -0
  165. package/types/btree/remove/module.f.js +174 -0
  166. package/types/btree/remove/test.f.d.ts +5 -0
  167. package/types/btree/remove/test.f.js +634 -0
  168. package/types/btree/set/module.f.d.ts +3 -0
  169. package/types/btree/set/module.f.js +103 -0
  170. package/types/btree/set/test.f.d.ts +2 -0
  171. package/types/btree/set/test.f.js +360 -0
  172. package/types/btree/test.f.d.ts +8 -0
  173. package/types/btree/test.f.js +75 -0
  174. package/types/btree/types/module.f.d.ts +11 -0
  175. package/types/btree/types/module.f.js +1 -0
  176. package/types/byte_set/module.f.d.ts +16 -0
  177. package/types/byte_set/module.f.js +28 -0
  178. package/types/byte_set/test.f.d.ts +12 -0
  179. package/types/byte_set/test.f.js +122 -0
  180. package/types/function/compare/module.f.d.ts +10 -0
  181. package/types/function/compare/module.f.js +7 -0
  182. package/types/function/compare/test.f.d.ts +2 -0
  183. package/types/function/compare/test.f.js +8 -0
  184. package/types/function/module.f.d.ts +28 -0
  185. package/types/function/module.f.js +19 -0
  186. package/types/function/operator/module.f.d.ts +20 -0
  187. package/types/function/operator/module.f.js +18 -0
  188. package/types/function/test.f.d.ts +2 -0
  189. package/types/function/test.f.js +12 -0
  190. package/types/list/module.f.d.ts +50 -0
  191. package/types/list/module.f.js +171 -0
  192. package/types/list/test.f.d.ts +22 -0
  193. package/types/list/test.f.js +395 -0
  194. package/types/map/module.f.d.ts +14 -0
  195. package/types/map/module.f.js +31 -0
  196. package/types/map/test.f.d.ts +5 -0
  197. package/types/map/test.f.js +114 -0
  198. package/types/nibble_set/module.f.d.ts +10 -0
  199. package/types/nibble_set/module.f.js +9 -0
  200. package/types/nibble_set/test.f.d.ts +12 -0
  201. package/types/nibble_set/test.f.js +90 -0
  202. package/types/nullable/module.f.d.ts +3 -0
  203. package/types/nullable/module.f.js +2 -0
  204. package/types/nullable/test.f.d.ts +2 -0
  205. package/types/nullable/test.f.js +12 -0
  206. package/types/number/module.f.d.ts +6 -0
  207. package/types/number/module.f.js +8 -0
  208. package/types/number/test.f.d.ts +11 -0
  209. package/types/number/test.f.js +124 -0
  210. package/types/object/module.f.d.ts +10 -0
  211. package/types/object/module.f.js +12 -0
  212. package/types/object/test.f.d.ts +5 -0
  213. package/types/object/test.f.js +17 -0
  214. package/types/range/module.f.d.ts +3 -0
  215. package/types/range/module.f.js +2 -0
  216. package/types/range/test.f.d.ts +2 -0
  217. package/types/range/test.f.js +18 -0
  218. package/types/range_map/module.f.d.ts +14 -0
  219. package/types/range_map/module.f.js +51 -0
  220. package/types/range_map/test.f.d.ts +6 -0
  221. package/types/range_map/test.f.js +176 -0
  222. package/types/result/module.f.d.ts +7 -0
  223. package/types/result/module.f.js +8 -0
  224. package/types/sorted_list/module.f.d.ts +16 -0
  225. package/types/sorted_list/module.f.js +56 -0
  226. package/types/sorted_list/test.f.d.ts +5 -0
  227. package/types/sorted_list/test.f.js +64 -0
  228. package/types/sorted_set/module.f.d.ts +7 -0
  229. package/types/sorted_set/module.f.js +14 -0
  230. package/types/sorted_set/test.f.d.ts +6 -0
  231. package/types/sorted_set/test.f.js +78 -0
  232. package/types/string/module.f.d.ts +6 -0
  233. package/types/string/module.f.js +11 -0
  234. package/types/string/test.f.d.ts +15 -0
  235. package/types/string/test.f.js +58 -0
  236. package/types/string_set/module.f.d.ts +9 -0
  237. package/types/string_set/module.f.js +22 -0
  238. package/types/string_set/test.f.d.ts +5 -0
  239. package/types/string_set/test.f.js +65 -0
  240. package/.github/FUNDING.yml +0 -12
  241. package/.github/dependabot.yml +0 -11
  242. package/.github/workflows/ci.yml +0 -88
  243. package/.github/workflows/npm-publish.yml +0 -53
  244. package/CHANGELOG.md +0 -29
  245. package/Cargo.lock +0 -18
  246. package/Cargo.toml +0 -7
  247. package/com/README.md +0 -3
  248. package/com/cpp/README.md +0 -80
  249. package/com/cpp/module.f.ts +0 -180
  250. package/com/cpp/nanocom.hpp +0 -195
  251. package/com/cpp/testlib.f.ts +0 -8
  252. package/com/cs/module.f.ts +0 -145
  253. package/com/cs/testlib.f.ts +0 -8
  254. package/com/proposals.md +0 -28
  255. package/com/rust/module.f.ts +0 -287
  256. package/com/rust/nanocom/Cargo.lock +0 -7
  257. package/com/rust/nanocom/Cargo.toml +0 -15
  258. package/com/rust/nanocom/README.md +0 -56
  259. package/com/rust/nanocom/src/class.rs +0 -6
  260. package/com/rust/nanocom/src/cobject.rs +0 -90
  261. package/com/rust/nanocom/src/guid.rs +0 -15
  262. package/com/rust/nanocom/src/hresult.rs +0 -7
  263. package/com/rust/nanocom/src/interface.rs +0 -9
  264. package/com/rust/nanocom/src/iunknown.rs +0 -13
  265. package/com/rust/nanocom/src/lib.rs +0 -20
  266. package/com/rust/nanocom/src/object.rs +0 -34
  267. package/com/rust/nanocom/src/ref.rs +0 -57
  268. package/com/rust/nanocom/src/vmt.rs +0 -7
  269. package/com/rust/nanocom/tests/it.rs +0 -186
  270. package/com/rust/nanocom/tests/itmod.rs +0 -195
  271. package/com/rust/testlib.f.ts +0 -8
  272. package/com/test/build.f.ts +0 -111
  273. package/com/test/build.ts +0 -45
  274. package/com/test/cpp/main.cpp +0 -74
  275. package/com/test/cs/Program.cs +0 -31
  276. package/com/test/cs/cs.csproj +0 -16
  277. package/com/test/rust/Cargo.toml +0 -12
  278. package/com/test/rust/src/lib.rs +0 -56
  279. package/com/types/module.f.ts +0 -62
  280. package/commonjs/README.md +0 -94
  281. package/commonjs/build/module.f.ts +0 -100
  282. package/commonjs/build/test.f.ts +0 -107
  283. package/commonjs/module/module.f.ts +0 -41
  284. package/commonjs/module.f.ts +0 -7
  285. package/commonjs/module.ts +0 -31
  286. package/commonjs/package/dependencies/module.f.ts +0 -22
  287. package/commonjs/package/dependencies/test.f.ts +0 -8
  288. package/commonjs/package/module.f.ts +0 -31
  289. package/commonjs/package/test.f.ts +0 -12
  290. package/commonjs/path/README.md +0 -17
  291. package/commonjs/path/module.f.ts +0 -171
  292. package/commonjs/test.ts +0 -64
  293. package/crypto/README.md +0 -3
  294. package/crypto/prime_field/module.f.ts +0 -114
  295. package/crypto/prime_field/test.f.ts +0 -95
  296. package/crypto/secp/module.f.ts +0 -182
  297. package/crypto/secp/test.f.ts +0 -68
  298. package/crypto/sha2/module.f.ts +0 -215
  299. package/crypto/sha2/test.f.ts +0 -83
  300. package/deno.json +0 -71
  301. package/dev/README.md +0 -8
  302. package/dev/index.ts +0 -3
  303. package/dev/module.f.ts +0 -1
  304. package/dev/module.ts +0 -195
  305. package/dev/test/module.f.ts +0 -135
  306. package/dev/test.ts +0 -53
  307. package/djs/README.md +0 -54
  308. package/djs/module.f.ts +0 -76
  309. package/djs/parser/module.f.ts +0 -509
  310. package/djs/parser/test.f.ts +0 -461
  311. package/djs/serializer/module.f.ts +0 -90
  312. package/djs/test.f.ts +0 -67
  313. package/djs/tokenizer/module.f.ts +0 -99
  314. package/djs/tokenizer/test.f.ts +0 -364
  315. package/doc/LANGUAGE.md +0 -255
  316. package/doc/README.md +0 -61
  317. package/doc/byte-code.md +0 -59
  318. package/doc/fa.md +0 -174
  319. package/doc/predefined.md +0 -143
  320. package/doc/proposals.md +0 -21
  321. package/doc/vm/README.md +0 -24
  322. package/doc/vm-rearchitecture.md +0 -129
  323. package/doc/vm.md +0 -150
  324. package/fsc/README.md +0 -111
  325. package/fsc/module.f.ts +0 -122
  326. package/fsc/test.f.ts +0 -21
  327. package/fsm/README.md +0 -113
  328. package/fsm/module.f.ts +0 -107
  329. package/fsm/test.f.ts +0 -139
  330. package/funding.json +0 -61
  331. package/html/README.md +0 -32
  332. package/html/module.f.ts +0 -109
  333. package/html/test.f.ts +0 -37
  334. package/issues/01-test-debug.md +0 -3
  335. package/issues/02-esm.md +0 -8
  336. package/issues/03-djs.md +0 -57
  337. package/issues/05-publish.md +0 -40
  338. package/issues/11-fs-load.md +0 -13
  339. package/issues/17-djs-extension.md +0 -6
  340. package/issues/README.md +0 -42
  341. package/issues/lang/1000-json.md +0 -50
  342. package/issues/lang/2110-default-export.md +0 -11
  343. package/issues/lang/2120-const.md +0 -14
  344. package/issues/lang/2130-default-import.md +0 -10
  345. package/issues/lang/2210-block-comment.md +0 -12
  346. package/issues/lang/2220-namespace-import.md +0 -25
  347. package/issues/lang/2310-undefined.md +0 -7
  348. package/issues/lang/2320-bigint.md +0 -7
  349. package/issues/lang/2330-property-accessor.md +0 -225
  350. package/issues/lang/2340-operators.md +0 -41
  351. package/issues/lang/2350-grouping.md +0 -11
  352. package/issues/lang/2360-built-in.md +0 -81
  353. package/issues/lang/2410-identifier-property.md +0 -9
  354. package/issues/lang/2420-line-comment.md +0 -10
  355. package/issues/lang/2430-trailing-comma.md +0 -13
  356. package/issues/lang/2440-shorthand.md +0 -8
  357. package/issues/lang/2450-destructuring.md +0 -12
  358. package/issues/lang/3110-function.md +0 -35
  359. package/issues/lang/3120-parameters.md +0 -9
  360. package/issues/lang/3130-body-const.md +0 -12
  361. package/issues/lang/3220-let.md +0 -11
  362. package/issues/lang/3240-export.md +0 -44
  363. package/issues/lang/3370-type-inference.md +0 -69
  364. package/issues/lang/3380-promise.md +0 -22
  365. package/issues/lang/3390-class.md +0 -3
  366. package/issues/lang/3410-expression.md +0 -12
  367. package/issues/lang/3420-one-parameter.md +0 -10
  368. package/issues/lang/3430-assignments.md +0 -23
  369. package/issues/lang/README.md +0 -193
  370. package/issues/test.f.ts +0 -58
  371. package/js/tokenizer/module.f.ts +0 -882
  372. package/js/tokenizer/test.f.ts +0 -617
  373. package/json/html/README.md +0 -49
  374. package/json/module.f.ts +0 -94
  375. package/json/parser/module.f.ts +0 -221
  376. package/json/parser/test.f.ts +0 -255
  377. package/json/serializer/module.f.ts +0 -74
  378. package/json/serializer/test.f.ts +0 -64
  379. package/json/test.f.ts +0 -48
  380. package/json/tokenizer/module.f.ts +0 -85
  381. package/json/tokenizer/test.f.ts +0 -290
  382. package/nanvm-lib/Cargo.toml +0 -6
  383. package/nanvm-lib/src/extension.rs +0 -130
  384. package/nanvm-lib/src/interface.rs +0 -133
  385. package/nanvm-lib/src/lib.rs +0 -7
  386. package/nanvm-lib/src/naive.rs +0 -236
  387. package/nanvm-lib/src/nanenum.rs +0 -236
  388. package/nanvm-lib/src/nullish.rs +0 -7
  389. package/nanvm-lib/src/sign.rs +0 -5
  390. package/nanvm-lib/src/simple.rs +0 -32
  391. package/nanvm-lib/tests/test.f.ts +0 -80
  392. package/nanvm-lib/tests/test.rs +0 -108
  393. package/nodejs/version/main.ts +0 -4
  394. package/nodejs/version/module.f.ts +0 -42
  395. package/text/README.md +0 -110
  396. package/text/ascii/module.f.ts +0 -219
  397. package/text/ascii/test.f.ts +0 -14
  398. package/text/module.f.ts +0 -30
  399. package/text/sgr/README.md +0 -3
  400. package/text/sgr/module.f.ts +0 -11
  401. package/text/test.f.ts +0 -19
  402. package/text/utf16/module.f.ts +0 -120
  403. package/text/utf16/test.f.ts +0 -107
  404. package/text/utf8/module.f.ts +0 -116
  405. package/text/utf8/test.f.ts +0 -125
  406. package/tsconfig.json +0 -104
  407. package/types/array/module.f.ts +0 -89
  408. package/types/array/test.f.ts +0 -88
  409. package/types/bigfloat/module.f.ts +0 -93
  410. package/types/bigfloat/test.f.ts +0 -218
  411. package/types/bigint/README.md +0 -35
  412. package/types/bigint/test.f.ts +0 -144
  413. package/types/bit_vec/README.md +0 -18
  414. package/types/bit_vec/test.f.ts +0 -129
  415. package/types/btree/README.md +0 -160
  416. package/types/btree/find/module.f.ts +0 -92
  417. package/types/btree/find/test.f.ts +0 -122
  418. package/types/btree/module.f.ts +0 -35
  419. package/types/btree/remove/module.f.ts +0 -151
  420. package/types/btree/remove/test.f.ts +0 -498
  421. package/types/btree/set/module.f.ts +0 -89
  422. package/types/btree/set/test.f.ts +0 -415
  423. package/types/btree/test.f.ts +0 -92
  424. package/types/btree/types/module.f.ts +0 -27
  425. package/types/byte_set/module.f.ts +0 -73
  426. package/types/byte_set/test.f.ts +0 -84
  427. package/types/function/compare/module.f.ts +0 -26
  428. package/types/function/compare/test.f.ts +0 -7
  429. package/types/function/module.f.ts +0 -43
  430. package/types/function/operator/module.f.ts +0 -65
  431. package/types/function/test.f.ts +0 -20
  432. package/types/list/module.f.ts +0 -350
  433. package/types/list/test.f.ts +0 -327
  434. package/types/map/module.f.ts +0 -65
  435. package/types/map/test.f.ts +0 -76
  436. package/types/nibble_set/module.f.ts +0 -34
  437. package/types/nibble_set/test.f.ts +0 -57
  438. package/types/nullable/module.f.ts +0 -9
  439. package/types/nullable/test.f.ts +0 -9
  440. package/types/number/module.f.ts +0 -20
  441. package/types/number/test.f.ts +0 -194
  442. package/types/object/module.f.ts +0 -30
  443. package/types/object/test.f.ts +0 -14
  444. package/types/range/module.f.ts +0 -10
  445. package/types/range/test.f.ts +0 -9
  446. package/types/range_map/module.f.ts +0 -70
  447. package/types/range_map/test.f.ts +0 -189
  448. package/types/result/module.f.ts +0 -20
  449. package/types/result/module.ts +0 -18
  450. package/types/sorted_list/module.f.ts +0 -83
  451. package/types/sorted_list/test.f.ts +0 -57
  452. package/types/sorted_set/module.f.ts +0 -36
  453. package/types/sorted_set/test.f.ts +0 -67
  454. package/types/string/module.f.ts +0 -26
  455. package/types/string/test.f.ts +0 -43
  456. package/types/string_set/module.f.ts +0 -37
  457. package/types/string_set/test.f.ts +0 -34
@@ -1,120 +0,0 @@
1
- import {
2
- map,
3
- flat,
4
- stateScan,
5
- reduce,
6
- flatMap,
7
- empty,
8
- type List,
9
- type Result,
10
- type Thunk,
11
- } from '../../types/list/module.f.ts'
12
- import * as operator from '../../types/function/operator/module.f.ts'
13
- import { contains } from '../../types/range/module.f.ts'
14
- import * as f from '../../types/function/module.f.ts'
15
- const { fn } = f
16
-
17
- type WordOrEof = u16|null
18
-
19
- type Utf16State = number|null
20
-
21
- type u16 = number
22
-
23
- type i32 = number
24
-
25
- const lowBmp = contains([0x0000, 0xd7ff])
26
- const highBmp = contains([0xe000, 0xffff])
27
-
28
- const isBmpCodePoint
29
- : (codePoint: i32) => boolean
30
- = codePoint => lowBmp(codePoint) || highBmp(codePoint)
31
-
32
- const isHighSurrogate
33
- : (codePoint: i32) => boolean
34
- = contains([0xd800, 0xdbff])
35
-
36
- const isLowSurrogate
37
- : (codePoint: i32) => boolean
38
- = contains([0xdc00, 0xdfff])
39
-
40
- const errorMask = 0b1000_0000_0000_0000_0000_0000_0000_0000
41
-
42
- const isSupplementaryPlane
43
- : (a: i32) => boolean
44
- = contains([0x01_0000, 0x10_ffff])
45
-
46
- const codePointToUtf16
47
- : (input: i32) => List<u16>
48
- = codePoint => {
49
- if (isBmpCodePoint(codePoint)) { return [codePoint] }
50
- if (isSupplementaryPlane(codePoint)) {
51
- const n = codePoint - 0x1_0000
52
- const high = (n >> 10) + 0xd800
53
- const low = (n & 0b0011_1111_1111) + 0xdc00
54
- return [high, low]
55
- }
56
- return [codePoint & 0xffff]
57
- }
58
-
59
- export const fromCodePointList
60
- : (input: List<number>) => Thunk<number>
61
- = flatMap(codePointToUtf16)
62
-
63
- const u16
64
- : (i: number) => boolean
65
- = contains([0x0000, 0xFFFF])
66
-
67
- const utf16ByteToCodePointOp
68
- : operator.StateScan<u16, Utf16State, List<i32>>
69
- = state => word => {
70
- if (!u16(word)) {
71
- return [[0xffffffff], state]
72
- }
73
- if (state === null) {
74
- if (isBmpCodePoint(word)) { return [[word], null] }
75
- if (isHighSurrogate(word)) { return [[], word] }
76
- return [[word | errorMask], null]
77
- }
78
- if (isLowSurrogate(word)) {
79
- const high = state - 0xd800
80
- const low = word - 0xdc00
81
- return [[(high << 10) + low + 0x10000], null]
82
- }
83
- if (isBmpCodePoint(word)) { return [[state | errorMask, word], null] }
84
- if (isHighSurrogate(word)) { return [[state | errorMask], word] }
85
- return [[state | errorMask, word | errorMask], null]
86
- }
87
-
88
- const utf16EofToCodePointOp
89
- : (state: Utf16State) => readonly[List<i32>, Utf16State]
90
- = state => [state === null ? empty : [state | errorMask], null]
91
-
92
- const utf16ByteOrEofToCodePointOp
93
- : operator.StateScan<WordOrEof, Utf16State, List<i32>>
94
- = state => input => input === null ? utf16EofToCodePointOp(state) : utf16ByteToCodePointOp(state)(input)
95
-
96
- const eofList
97
- : List<WordOrEof>
98
- = [null]
99
-
100
- export const toCodePointList
101
- : (input: List<u16>) => List<i32>
102
- = input => flat(stateScan(utf16ByteOrEofToCodePointOp)(null)(flat([input, eofList])))
103
-
104
- export const stringToList
105
- : (s: string) => List<u16>
106
- = s => {
107
- const at
108
- : (i: number) => Result<number>
109
- = i => {
110
- const first = s.charCodeAt(i)
111
- return isNaN(first) ? empty : { first, tail: () => at(i + 1) }
112
- }
113
- return at(0)
114
- }
115
-
116
- export const listToString
117
- : (input: List<u16>) => string
118
- = fn(map(String.fromCharCode))
119
- .then(reduce(operator.concat)(''))
120
- .result
@@ -1,107 +0,0 @@
1
- import * as encoding from './module.f.ts'
2
- import * as json from '../../json/module.f.ts'
3
- import * as o from '../../types/object/module.f.ts'
4
- const { sort } = o
5
- import * as list from '../../types/list/module.f.ts'
6
-
7
- const stringify
8
- : (a: readonly json.Unknown[]) => string
9
- = a => json.stringify(sort)(a)
10
-
11
- export default {
12
- toCodePointList: [
13
- () => {
14
- const result = stringify(list.toArray(encoding.toCodePointList([-1, 65536])))
15
- if (result !== '[4294967295,4294967295]') { throw result }
16
- },
17
- () => {
18
- const result = stringify(list.toArray(encoding.toCodePointList([0, 36, 8364, 55295, 57344, 65535])))
19
- if (result !== '[0,36,8364,55295,57344,65535]') { throw result }
20
- },
21
- () => {
22
- const result = stringify(list.toArray(encoding.toCodePointList([56320, 57343])))
23
- if (result !== '[-2147427328,-2147426305]') { throw result }
24
- },
25
- () => {
26
- const result = stringify(list.toArray(encoding.toCodePointList([55296, 56320, 55297, 56375, 55378, 57186, 56319, 57343])))
27
- if (result !== '[65536,66615,150370,1114111]') { throw result }
28
- },
29
- () => {
30
- const result = stringify(list.toArray(encoding.toCodePointList([55296, 55296])))
31
- if (result !== '[-2147428352,-2147428352]') { throw result }
32
- },
33
- () => {
34
- const result = stringify(list.toArray(encoding.toCodePointList([55296, 0])))
35
- if (result !== '[-2147428352,0]') { throw result }
36
- },
37
- () => {
38
- const result = stringify(list.toArray(encoding.toCodePointList([56320])))
39
- if (result !== '[-2147427328]') { throw result }
40
- },
41
- () => {
42
- const result = stringify(list.toArray(encoding.toCodePointList([56320, 0])))
43
- if (result !== '[-2147427328,0]') { throw result }
44
- }
45
- ],
46
- fromCodePointList: [
47
- () => {
48
- const result = stringify(list.toArray(encoding.fromCodePointList([0])))
49
- if (result !== '[0]') { throw result }
50
- },
51
- () => {
52
- const result = stringify(list.toArray(encoding.fromCodePointList([0x24])))
53
- if (result !== '[36]') { throw result }
54
- },
55
- () => {
56
- const result = stringify(list.toArray(encoding.fromCodePointList([0x20AC])))
57
- if (result !== '[8364]') { throw result }
58
- },
59
- () => {
60
- const result = stringify(list.toArray(encoding.fromCodePointList([0xd7ff])))
61
- if (result !== '[55295]') { throw result }
62
- },
63
- () => {
64
- const result = stringify(list.toArray(encoding.fromCodePointList([0xe000])))
65
- if (result !== '[57344]') { throw result }
66
- },
67
- () => {
68
- const result = stringify(list.toArray(encoding.fromCodePointList([0xffff])))
69
- if (result !== '[65535]') { throw result }
70
- },
71
- () => {
72
- const result = stringify(list.toArray(encoding.fromCodePointList([0x10000])))
73
- if (result !== '[55296,56320]') { throw result }
74
- },
75
- () => {
76
- const result = stringify(list.toArray(encoding.fromCodePointList([0x10437])))
77
- if (result !== '[55297,56375]') { throw result }
78
- },
79
- () => {
80
- const result = stringify(list.toArray(encoding.fromCodePointList([0x24B62])))
81
- if (result !== '[55378,57186]') { throw result }
82
- },
83
- () => {
84
- const result = stringify(list.toArray(encoding.fromCodePointList([0x10ffff])))
85
- if (result !== '[56319,57343]') { throw result }
86
- },
87
- () => {
88
- const result = stringify(list.toArray(encoding.fromCodePointList([-1, 0xd800, 0xdfff, 0x110000])))
89
- if (result !== '[65535,55296,57343,0]') { throw result }
90
- }
91
- ],
92
- string: [
93
- () => {
94
- const utf16List = encoding.stringToList("Hello world!😂🚜🚲")
95
- const result = encoding.listToString(utf16List)
96
- if (result !== "Hello world!😂🚜🚲") { throw result }
97
- },
98
- () => {
99
- const a = encoding.stringToList("Hello world!😂🚜🚲")
100
- const b = encoding.toCodePointList(a)
101
- const c = encoding.fromCodePointList(b)
102
- const result = encoding.listToString(c)
103
- if (result !== "Hello world!😂🚜🚲") { throw result }
104
-
105
- }
106
- ]
107
- }
@@ -1,116 +0,0 @@
1
- import { flatMap, flat, stateScan, type List, type Thunk } from '../../types/list/module.f.ts'
2
- import * as operator from '../../types/function/operator/module.f.ts'
3
- import * as Array from '../../types/array/module.f.ts'
4
-
5
- type ByteOrEof = u8|null
6
-
7
- type Utf8NonEmptyState = Array.Array1<number>|Array.Array2<number>|Array.Array3<number>
8
-
9
- type Utf8State = null|Utf8NonEmptyState
10
-
11
- type u8 = number
12
-
13
- type i32 = number
14
-
15
- const errorMask = 0b1000_0000_0000_0000_0000_0000_0000_0000
16
-
17
- const codePointToUtf8
18
- : (input:number) => List<u8>
19
- = input => {
20
- if (input >= 0x0000 && input <= 0x007f) { return [input & 0b01111_1111] }
21
- if (input >= 0x0080 && input <= 0x07ff) { return [input >> 6 | 0b1100_0000, input & 0b0011_1111 | 0b1000_0000] }
22
- if (input >= 0x0800 && input <= 0xffff) { return [input >> 12 | 0b1110_0000, input >> 6 & 0b0011_1111 | 0b1000_0000, input & 0b0011_1111 | 0b1000_0000] }
23
- if (input >= 0x10000 && input <= 0x10ffff) { return [input >> 18 | 0b1111_0000, input >> 12 & 0b0011_1111 | 0b1000_0000, input >> 6 & 0b0011_1111 | 0b1000_0000, input & 0b0011_1111 | 0b1000_0000] }
24
- if ((input & errorMask) !== 0) {
25
- if ((input & 0b1000_0000_0000_0000) !== 0) { return [input >> 12 & 0b0000_0111 | 0b1111_0000, input >> 6 & 0b0011_1111 | 0b1000_0000, input & 0b0011_1111 | 0b1000_0000] }
26
- if ((input & 0b0000_0100_0000_0000) !== 0) { return [input >> 6 & 0b0000_1111 | 0b1110_0000, input & 0b0011_1111 | 0b1000_0000] }
27
- if ((input & 0b0000_0010_0000_0000) !== 0) { return [input >> 6 & 0b0000_0111 | 0b1111_0000, input & 0b0011_1111 | 0b1000_0000] }
28
- if ((input & 0b0000_0000_1000_0000) !== 0) { return [input & 0b1111_1111] }
29
- }
30
- return [errorMask]
31
- }
32
-
33
- export const fromCodePointList
34
- : (input: List<number>) => Thunk<number>
35
- = flatMap(codePointToUtf8)
36
-
37
- const utf8StateToError
38
- : (state: Utf8NonEmptyState) => i32
39
- = state => {
40
- let x
41
- switch (state.length) {
42
- case 1: {
43
- [x] = state
44
- break
45
- }
46
- case 2: {
47
- const [s0, s1] = state
48
- x = s0 < 0b1111_0000
49
- ? ((s0 & 0b0000_1111) << 6) + (s1 & 0b0011_1111) + 0b0000_0100_0000_0000
50
- : ((s0 & 0b0000_0111) << 6) + (s1 & 0b0011_1111) + 0b0000_0010_0000_0000
51
- break
52
- }
53
- case 3: {
54
- const [s0, s1, s2] = state
55
- x = ((s0 & 0b0000_0111) << 12) + ((s1 & 0b0011_1111) << 6) + (s2 & 0b0011_1111) + 0b1000_0000_0000_0000
56
- break
57
- }
58
- default:
59
- throw 'invalid state'
60
- }
61
- return x | errorMask
62
- }
63
-
64
- const utf8ByteToCodePointOp
65
- : operator.StateScan<number, Utf8State, List<i32>>
66
- = state => byte => {
67
- if (byte < 0x00 || byte > 0xff) {
68
- return [[errorMask], state]
69
- }
70
- if (state === null) {
71
- if (byte < 0b1000_0000) { return [[byte], null] }
72
- if (byte >= 0b1100_0010 && byte <= 0b1111_0100) { return [[], [byte]] }
73
- return [[byte | errorMask], null]
74
- }
75
- if (byte >= 0b1000_0000 && byte < 0b1100_0000) {
76
- switch (state.length) {
77
- case 1: {
78
- const [s0] = state
79
- if (s0 < 0b1110_0000) { return [[((s0 & 0b0001_1111) << 6) + (byte & 0b0011_1111)], null] }
80
- if (s0 < 0b1111_1000) { return [[], [s0, byte]] }
81
- break
82
- }
83
- case 2: {
84
- const [s0, s1] = state
85
- if (s0 < 0b1111_0000) { return [[((s0 & 0b0000_1111) << 12) + ((s1 & 0b0011_1111) << 6) + (byte & 0b0011_1111)], null] }
86
- if (s0 < 0b1111_1000) { return [[], [s0, s1, byte]] }
87
- break
88
- }
89
- case 3: {
90
- const [s0, s1, s2] = state
91
- return [[((s0 & 0b0000_0111) << 18) + ((s1 & 0b0011_1111) << 12) + ((s2 & 0b0011_1111) << 6) + (byte & 0b0011_1111)], null]
92
- }
93
- }
94
- }
95
- const error = utf8StateToError(state)
96
- if (byte < 0b1000_0000) { return [[error, byte], null] }
97
- if (byte >= 0b1100_0010 && byte <= 0b1111_0100) { return [[error], [byte]] }
98
- return [[error, byte | errorMask], null]
99
- }
100
-
101
- const utf8EofToCodePointOp
102
- : (state: Utf8State) => readonly[List<i32>, Utf8State]
103
- = state =>
104
- [state === null ? null : [utf8StateToError(state)], null]
105
-
106
- const utf8ByteOrEofToCodePointOp
107
- : operator.StateScan<ByteOrEof, Utf8State, List<i32>>
108
- = state => input => input === null ? utf8EofToCodePointOp(state) : utf8ByteToCodePointOp(state)(input)
109
-
110
- const eofList
111
- : List<ByteOrEof>
112
- = [null]
113
-
114
- export const toCodePointList
115
- : (input: List<u8>) => List<i32>
116
- = input => flat(stateScan(utf8ByteOrEofToCodePointOp)(null)(flat([input, eofList])))
@@ -1,125 +0,0 @@
1
- import * as encoding from './module.f.ts'
2
- import * as json from '../../json/module.f.ts'
3
- import * as o from '../../types/object/module.f.ts'
4
- const { sort } = o
5
- import * as list from '../../types/list/module.f.ts'
6
-
7
- const stringify = json.stringify(sort)
8
-
9
- export default {
10
- toCodePoint: [
11
- () => {
12
- const result = stringify(list.toArray(encoding.toCodePointList([-1, 256])))
13
- if (result !== '[2147483648,2147483648]') { throw result }
14
- },
15
- () => {
16
- const result = stringify(list.toArray(encoding.toCodePointList([128, 193, 245, 255])))
17
- if (result !== '[-2147483520,-2147483455,-2147483403,-2147483393]') { throw result }
18
- },
19
- () => {
20
- const result = stringify(list.toArray(encoding.toCodePointList([0, 1, 127])))
21
- if (result !== '[0,1,127]') { throw result }
22
- },
23
- () => {
24
- const result = stringify(list.toArray(encoding.toCodePointList([194, 128, 194, 169, 223, 191])))
25
- if (result !== '[128,169,2047]') { throw result }
26
- },
27
- () => {
28
- const result = stringify(list.toArray(encoding.toCodePointList([194, 194, 127, 194, 192, 194])))
29
- if (result !== '[-2147483454,-2147483454,127,-2147483454,-2147483456,-2147483454]') { throw result }
30
- },
31
- () => {
32
- const result = stringify(list.toArray(encoding.toCodePointList([224, 160, 128, 224, 160, 129, 239, 191, 191])))
33
- if (result !== '[2048,2049,65535]') { throw result }
34
- },
35
- () => {
36
- const result = stringify(list.toArray(encoding.toCodePointList([224, 224, 160, 127, 239, 191])))
37
- if (result !== '[-2147483424,-2147482592,127,-2147481601]') { throw result }
38
- },
39
- () => {
40
- const result = stringify(list.toArray(encoding.toCodePointList([240, 144, 128, 128, 240, 144, 128, 129, 244, 143, 191, 191])))
41
- if (result !== '[65536,65537,1114111]') { throw result }
42
- },
43
- () => {
44
- const result = stringify(list.toArray(encoding.toCodePointList([240, 240, 160, 127, 244, 191])))
45
- if (result !== '[-2147483408,-2147483104,127,-2147482817]') { throw result }
46
- },
47
- () => {
48
- const result = stringify(list.toArray(encoding.toCodePointList([240, 160, 160, 244, 160, 160])))
49
- if (result !== '[-2147448800,-2147432416]') { throw result }
50
- }
51
- ],
52
- fromCodePointList: [
53
- () => {
54
- const result = stringify(list.toArray(encoding.fromCodePointList([0, 1, 0x7F])))
55
- if (result !== '[0,1,127]') { throw result }
56
- },
57
- () => {
58
- const result = stringify(list.toArray(encoding.fromCodePointList([0x80])))
59
- if (result !== '[194,128]') { throw result }
60
- },
61
- () => {
62
- const result = stringify(list.toArray(encoding.fromCodePointList([0xa9])))
63
- if (result !== '[194,169]') { throw result }
64
- },
65
- () => {
66
- const result = stringify(list.toArray(encoding.fromCodePointList([0x7ff])))
67
- if (result !== '[223,191]') { throw result }
68
- },
69
- () => {
70
- const result = stringify(list.toArray(encoding.fromCodePointList([0x800])))
71
- if (result !== '[224,160,128]') { throw result }
72
- },
73
- () => {
74
- const result = stringify(list.toArray(encoding.fromCodePointList([0x801])))
75
- if (result !== '[224,160,129]') { throw result }
76
- },
77
- () => {
78
- const result = stringify(list.toArray(encoding.fromCodePointList([0xffff])))
79
- if (result !== '[239,191,191]') { throw result }
80
- },
81
- () => {
82
- const result = stringify(list.toArray(encoding.fromCodePointList([0x10000])))
83
- if (result !== '[240,144,128,128]') { throw result }
84
- },
85
- () => {
86
- const result = stringify(list.toArray(encoding.fromCodePointList([0x10001])))
87
- if (result !== '[240,144,128,129]') { throw result }
88
- },
89
- () => {
90
- const result = stringify(list.toArray(encoding.fromCodePointList([0x10FFFF])))
91
- if (result !== '[244,143,191,191]') { throw result }
92
- },
93
- () => {
94
- const result = stringify(list.toArray(encoding.fromCodePointList([0x110000, 2147483648])))
95
- if (result !== '[2147483648,2147483648]') { throw result }
96
- }
97
- ],
98
- toFrom: [
99
- () => {
100
- const codePointList = encoding.toCodePointList([128, 193, 245, 255])
101
- const result = stringify(list.toArray(encoding.fromCodePointList(codePointList)))
102
- if (result !== '[128,193,245,255]') { throw result }
103
- },
104
- () => {
105
- const codePointList = encoding.toCodePointList([194, 194, 127, 194, 192, 194])
106
- const result = stringify(list.toArray(encoding.fromCodePointList(codePointList)))
107
- if (result !== '[194,194,127,194,192,194]') { throw result }
108
- },
109
- () => {
110
- const codePointList = encoding.toCodePointList([224, 224, 160, 127, 239, 191])
111
- const result = stringify(list.toArray(encoding.fromCodePointList(codePointList)))
112
- if (result !== '[224,224,160,127,239,191]') { throw result }
113
- },
114
- () => {
115
- const codePointList = encoding.toCodePointList([240, 240, 160, 127, 244, 191])
116
- const result = stringify(list.toArray(encoding.fromCodePointList(codePointList)))
117
- if (result !== '[240,240,160,127,244,191]') { throw result }
118
- },
119
- () => {
120
- const codePointList = encoding.toCodePointList([240, 160, 160, 244, 160, 160])
121
- const result = stringify(list.toArray(encoding.fromCodePointList(codePointList)))
122
- if (result !== '[240,160,160,244,160,160]') { throw result }
123
- }
124
- ]
125
- }
package/tsconfig.json DELETED
@@ -1,104 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- /* Visit https://aka.ms/tsconfig.json to read more about this file */
4
- "allowImportingTsExtensions": true,
5
- "rewriteRelativeImportExtensions": true,
6
- "verbatimModuleSyntax": true,
7
-
8
- /* Projects */
9
- // "incremental": true, /* Enable incremental compilation */
10
- // "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
11
- // "tsBuildInfoFile": "./", /* Specify the folder for .tsbuildinfo incremental compilation files. */
12
- // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects */
13
- // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
14
- // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
15
-
16
- /* Language and Environment */
17
- "target": "ES2022", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
18
- // "lib": ["ES2021"], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
19
- // "jsx": "preserve", /* Specify what JSX code is generated. */
20
- // "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
21
- // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
22
- // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h' */
23
- // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
24
- // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.` */
25
- // "reactNamespace": "", /* Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit. */
26
- // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
27
- // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
28
-
29
- /* Modules */
30
- "module": "ES2022", /* Specify what module code is generated. */
31
- // "rootDir": "./", /* Specify the root folder within your source files. */
32
- // "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
33
- // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
34
- // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
35
- // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
36
- // "typeRoots": [], /* Specify multiple folders that act like `./node_modules/@types`. */
37
- // "types": [], /* Specify type package names to be included without being referenced in a source file. */
38
- // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
39
- // "resolveJsonModule": true, /* Enable importing .json files */
40
- // "noResolve": true, /* Disallow `import`s, `require`s or `<reference>`s from expanding the number of files TypeScript should add to a project. */
41
-
42
- /* JavaScript Support */
43
- "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */
44
- "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
45
- // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`. */
46
-
47
- /* Emit */
48
- "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
49
- // "declarationMap": true, /* Create sourcemaps for d.ts files. */
50
- // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
51
- // "sourceMap": true, /* Create source map files for emitted JavaScript files. */
52
- // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output. */
53
- // "outDir": "./out", /* Specify an output folder for all emitted files. */
54
- // "removeComments": true, /* Disable emitting comments. */
55
- "noEmit": true, /* Disable emitting files from a compilation. */
56
- // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
57
- // "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types */
58
- // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
59
- // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
60
- // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
61
- // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
62
- // "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */
63
- // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
64
- // "newLine": "crlf", /* Set the newline character for emitting files. */
65
- // "stripInternal": true, /* Disable emitting declarations that have `@internal` in their JSDoc comments. */
66
- // "noEmitHelpers": true, /* Disable generating custom helper functions like `__extends` in compiled output. */
67
- // "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
68
- // "preserveConstEnums": true, /* Disable erasing `const enum` declarations in generated code. */
69
- // "declarationDir": "./", /* Specify the output directory for generated declaration files. */
70
-
71
- /* Interop Constraints */
72
- // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
73
- // "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
74
- "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */
75
- // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
76
- "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
77
-
78
- /* Type Checking */
79
- "strict": true, /* Enable all strict type-checking options. */
80
- // "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied `any` type.. */
81
- // "strictNullChecks": true, /* When type checking, take into account `null` and `undefined`. */
82
- // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
83
- // "strictBindCallApply": true, /* Check that the arguments for `bind`, `call`, and `apply` methods match the original function. */
84
- // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
85
- // "noImplicitThis": true, /* Enable error reporting when `this` is given the type `any`. */
86
- // "useUnknownInCatchVariables": true, /* Type catch clause variables as 'unknown' instead of 'any'. */
87
- // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
88
- // "noUnusedLocals": true, /* Enable error reporting when a local variables aren't read. */
89
- // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read */
90
- // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
91
- // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
92
- // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
93
- // "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */
94
- // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
95
- // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type */
96
- // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
97
- // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
98
-
99
- /* Completeness */
100
- // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
101
- "skipLibCheck": true /* Skip type checking all .d.ts files. */
102
- },
103
- "exclude": ["target"]
104
- }
@@ -1,89 +0,0 @@
1
- import * as option from '../nullable/module.f.ts'
2
- const { map } = option
3
-
4
- export type Array1<T> = readonly[T]
5
-
6
- type Index1 = 0
7
-
8
- export type Array2<T> = readonly[T, T]
9
-
10
- type Tuple2<T0, T1> = readonly[T0, T1]
11
-
12
- type Index2 = 0|1
13
-
14
- export type Array3<T> = readonly[T, T, T]
15
-
16
- type Tuple3<T0, T1, T2> = readonly[T0, T1, T2]
17
-
18
- export type Index3 = 0|1|2
19
-
20
- export type Array4<T> = readonly[T, T, T, T]
21
-
22
- type Index4 = 0|1|2|3
23
-
24
- export type Array5<T> = readonly[T, T, T, T, T]
25
-
26
- export type Array8<T> = readonly[T, T, T, T, T, T, T, T]
27
-
28
- export type Array16<T> = readonly[T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T]
29
-
30
- type Index16 = 0|1|2|3|4|5|6|7|8|9|10|11|12|13|14|15
31
-
32
- type Array1_5<T> = Array1<T>| Array2<T> | Array3<T> | Array4<T> | Array5<T>
33
-
34
- export type Index5 = 0|1|2|3|4
35
-
36
- export type KeyOf<T> = T extends Array1<infer _> ? Index1 :
37
- T extends Array2<infer _> ? Index2 :
38
- T extends Array3<infer _> ? Index3 :
39
- T extends Array4<infer _> ? Index4 :
40
- T extends Array5<infer _> ? Index5 :
41
- T extends readonly (infer _)[] ? number :
42
- never
43
-
44
- const uncheckTail
45
- : <T>(_: readonly T[]) => readonly T[]
46
- = a => a.slice(1)
47
-
48
- const uncheckHead
49
- : <T>(_: readonly T[]) => readonly T[]
50
- = a => a.slice(0, -1)
51
-
52
- export const at
53
- : (index: number) => <T>(a: readonly T[]) => T|null
54
- = i => a => {
55
- const r = a[i]
56
- return r === void 0 ? null : r
57
- }
58
-
59
- export const first
60
- : <T>(_: readonly T[]) => T|null
61
- = at(0)
62
-
63
- export const last
64
- : <T>(_: readonly T[]) => T|null
65
- = a => at(a.length - 1)(a)
66
-
67
- export const tail
68
- : <T>(_: readonly T[]) => readonly T[] | null
69
- = a => a.length === 0 ? null : uncheckTail(a)
70
-
71
- export const splitFirst
72
- = <T>(a: readonly T[]): readonly[T, readonly T[]]|null => {
73
- const split
74
- : (_: T) => readonly[T, readonly T[]]
75
- = first => [first, uncheckTail(a)]
76
- return map(split)(first(a))
77
- }
78
-
79
- export const head
80
- : <T>(_: readonly T[]) => readonly T[]|null
81
- = a => a.length === 0 ? null : uncheckHead(a)
82
-
83
- export const splitLast
84
- : <T>(_: readonly T[]) => readonly[readonly T[], T]|null
85
- = a => {
86
- const lastA = last(a)
87
- if (lastA === null) { return null }
88
- return [uncheckHead(a), lastA]
89
- }