@mojir/lits 2.2.2-alpha.6 → 2.2.2

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 (908) hide show
  1. package/README.md +1556 -107
  2. package/dist/cli/cli/src/cli.d.ts +1 -1
  3. package/dist/cli/cli/src/cliDocumentation/getCliType.d.ts +1 -1
  4. package/dist/cli/cli/src/colorizer.d.ts +36 -36
  5. package/dist/cli/cli/src/js-interop/Cli/Fs/index.d.ts +2 -0
  6. package/dist/cli/cli/src/js-interop/Cli/Proc/index.d.ts +3 -0
  7. package/dist/cli/cli/src/js-interop/Cli/index.d.ts +3 -0
  8. package/dist/cli/cli/src/js-interop/utils.d.ts +2 -0
  9. package/dist/cli/cli.js +30531 -12755
  10. package/dist/cli/reference/api.d.ts +53 -41
  11. package/dist/cli/reference/index.d.ts +150 -23
  12. package/dist/cli/src/AutoCompleter/AutoCompleter.d.ts +24 -0
  13. package/dist/cli/src/Lits/Cache.d.ts +1 -1
  14. package/dist/cli/src/Lits/Lits.d.ts +26 -22
  15. package/dist/cli/src/allModules.d.ts +2 -0
  16. package/dist/cli/src/builtin/bindingNode.d.ts +5 -0
  17. package/dist/cli/src/builtin/{normalExpressions/categories → core}/array.d.ts +1 -1
  18. package/dist/cli/src/builtin/{normalExpressions/categories → core}/bitwise.d.ts +1 -1
  19. package/dist/{src/builtin/normalExpressions/categories → cli/src/builtin/core}/collection.d.ts +1 -1
  20. package/dist/{src/builtin/normalExpressions/categories → cli/src/builtin/core}/functional.d.ts +1 -1
  21. package/dist/{src/builtin/normalExpressions/categories → cli/src/builtin/core}/math.d.ts +1 -1
  22. package/dist/cli/src/builtin/core/meta.d.ts +3 -0
  23. package/dist/cli/src/builtin/{normalExpressions/categories → core}/misc.d.ts +1 -1
  24. package/dist/{src/builtin/normalExpressions/categories → cli/src/builtin/core}/object.d.ts +1 -1
  25. package/dist/{src/builtin/normalExpressions/categories → cli/src/builtin/core}/predicates.d.ts +1 -1
  26. package/dist/{src/builtin/normalExpressions/categories → cli/src/builtin/core}/regexp.d.ts +1 -1
  27. package/dist/cli/src/builtin/core/sequence.d.ts +2 -0
  28. package/dist/cli/src/builtin/{normalExpressions/categories → core}/string.d.ts +1 -1
  29. package/dist/cli/src/builtin/core/vector.d.ts +2 -0
  30. package/dist/cli/src/builtin/index.d.ts +10 -34
  31. package/dist/cli/src/builtin/interface.d.ts +92 -24
  32. package/dist/cli/src/builtin/modules/assert/docs.d.ts +2 -0
  33. package/dist/cli/src/builtin/modules/assert/index.d.ts +2 -0
  34. package/dist/cli/src/builtin/modules/bitwise/index.d.ts +2 -0
  35. package/dist/cli/src/builtin/modules/collection/index.d.ts +2 -0
  36. package/dist/cli/src/builtin/modules/functional/index.d.ts +2 -0
  37. package/dist/cli/src/builtin/modules/grid/docs.d.ts +2 -0
  38. package/dist/cli/src/builtin/modules/grid/fromArray.d.ts +8 -0
  39. package/dist/cli/src/builtin/modules/grid/index.d.ts +2 -0
  40. package/dist/cli/src/builtin/modules/grid/transpose.d.ts +2 -0
  41. package/dist/cli/src/builtin/modules/interface.d.ts +11 -0
  42. package/dist/cli/src/builtin/modules/linear-algebra/docs.d.ts +2 -0
  43. package/dist/cli/src/builtin/modules/linear-algebra/helpers/calcFractionalRanks.d.ts +1 -0
  44. package/dist/cli/src/builtin/modules/linear-algebra/helpers/collinear.d.ts +2 -0
  45. package/dist/cli/src/builtin/modules/linear-algebra/helpers/corrleation.d.ts +8 -0
  46. package/dist/cli/src/builtin/modules/linear-algebra/helpers/covariance.d.ts +4 -0
  47. package/dist/cli/src/builtin/modules/linear-algebra/helpers/dot.d.ts +1 -0
  48. package/dist/cli/src/builtin/modules/linear-algebra/helpers/gaussJordanElimination.d.ts +7 -0
  49. package/dist/cli/src/builtin/modules/linear-algebra/helpers/getUnit.d.ts +2 -0
  50. package/dist/cli/src/builtin/modules/linear-algebra/helpers/isZeroVector.d.ts +1 -0
  51. package/dist/cli/src/builtin/modules/linear-algebra/helpers/kendallTau.d.ts +10 -0
  52. package/dist/cli/src/builtin/modules/linear-algebra/helpers/length.d.ts +1 -0
  53. package/dist/cli/src/builtin/modules/linear-algebra/helpers/pearsonCorr.d.ts +1 -0
  54. package/dist/cli/src/builtin/modules/linear-algebra/helpers/scale.d.ts +1 -0
  55. package/dist/cli/src/builtin/modules/linear-algebra/helpers/solve.d.ts +8 -0
  56. package/dist/cli/src/builtin/modules/linear-algebra/helpers/subtract.d.ts +1 -0
  57. package/dist/cli/src/builtin/modules/linear-algebra/index.d.ts +4 -0
  58. package/dist/cli/src/builtin/modules/math/index.d.ts +2 -0
  59. package/dist/cli/src/builtin/modules/matrix/docs.d.ts +2 -0
  60. package/dist/cli/src/builtin/modules/matrix/helpers/adjugate.d.ts +1 -0
  61. package/dist/cli/src/builtin/modules/matrix/helpers/band.d.ts +9 -0
  62. package/dist/cli/src/builtin/modules/matrix/helpers/cofactor.d.ts +1 -0
  63. package/dist/cli/src/builtin/modules/matrix/helpers/determinant.d.ts +6 -0
  64. package/dist/cli/src/builtin/modules/matrix/helpers/inverse.d.ts +6 -0
  65. package/dist/cli/src/builtin/modules/matrix/helpers/isBanded.d.ts +11 -0
  66. package/dist/cli/src/builtin/modules/matrix/helpers/isDiagonal.d.ts +10 -0
  67. package/dist/cli/src/builtin/modules/matrix/helpers/isIdentity.d.ts +1 -0
  68. package/dist/cli/src/builtin/modules/matrix/helpers/isOrthogonal.d.ts +1 -0
  69. package/dist/cli/src/builtin/modules/matrix/helpers/isSquare.d.ts +1 -0
  70. package/dist/cli/src/builtin/modules/matrix/helpers/isSymetric.d.ts +8 -0
  71. package/dist/cli/src/builtin/modules/matrix/helpers/isTriangular.d.ts +13 -0
  72. package/dist/cli/src/builtin/modules/matrix/helpers/matrixMultiply.d.ts +7 -0
  73. package/dist/cli/src/builtin/modules/matrix/helpers/minor.d.ts +1 -0
  74. package/dist/cli/src/builtin/modules/matrix/helpers/norm1.d.ts +1 -0
  75. package/dist/cli/src/builtin/modules/matrix/helpers/trace.d.ts +8 -0
  76. package/dist/cli/src/builtin/modules/matrix/index.d.ts +4 -0
  77. package/dist/cli/src/builtin/modules/number-theory/binomialCefficient.d.ts +1 -0
  78. package/dist/cli/src/builtin/modules/number-theory/combinations.d.ts +2 -0
  79. package/dist/cli/src/builtin/modules/number-theory/derangements.d.ts +2 -0
  80. package/dist/cli/src/builtin/modules/number-theory/divisors.d.ts +4 -0
  81. package/dist/cli/src/builtin/modules/number-theory/docs.d.ts +2 -0
  82. package/dist/cli/src/builtin/modules/number-theory/factorial.d.ts +3 -0
  83. package/dist/cli/src/builtin/modules/number-theory/index.d.ts +4 -0
  84. package/dist/cli/src/builtin/modules/number-theory/partitions.d.ts +2 -0
  85. package/dist/cli/src/builtin/modules/number-theory/permutations.d.ts +2 -0
  86. package/dist/cli/src/builtin/modules/number-theory/powerSet.d.ts +2 -0
  87. package/dist/cli/src/builtin/modules/number-theory/primeFactors.d.ts +11 -0
  88. package/dist/cli/src/builtin/modules/number-theory/sequences/abundant.d.ts +2 -0
  89. package/dist/cli/src/builtin/modules/number-theory/sequences/arithmetic.d.ts +2 -0
  90. package/dist/cli/src/builtin/modules/number-theory/sequences/bell.d.ts +1 -0
  91. package/dist/cli/src/builtin/modules/number-theory/sequences/bernoulli.d.ts +2 -0
  92. package/dist/cli/src/builtin/modules/number-theory/sequences/catalan.d.ts +1 -0
  93. package/dist/cli/src/builtin/modules/number-theory/sequences/collatz.d.ts +2 -0
  94. package/dist/cli/src/builtin/modules/number-theory/sequences/composite.d.ts +3 -0
  95. package/dist/cli/src/builtin/modules/number-theory/sequences/deficient.d.ts +2 -0
  96. package/dist/cli/src/builtin/modules/number-theory/sequences/factorial.d.ts +1 -0
  97. package/dist/cli/src/builtin/modules/number-theory/sequences/fibonacci.d.ts +1 -0
  98. package/dist/cli/src/builtin/modules/number-theory/sequences/geometric.d.ts +2 -0
  99. package/dist/cli/src/builtin/modules/number-theory/sequences/golomb.d.ts +2 -0
  100. package/dist/cli/src/builtin/modules/number-theory/sequences/happy.d.ts +2 -0
  101. package/dist/cli/src/builtin/modules/number-theory/sequences/index.d.ts +26 -0
  102. package/dist/cli/src/builtin/modules/number-theory/sequences/juggler.d.ts +2 -0
  103. package/dist/cli/src/builtin/modules/number-theory/sequences/lookAndSay.d.ts +2 -0
  104. package/dist/cli/src/builtin/modules/number-theory/sequences/lucas.d.ts +1 -0
  105. package/dist/cli/src/builtin/modules/number-theory/sequences/lucky.d.ts +2 -0
  106. package/dist/cli/src/builtin/modules/number-theory/sequences/mersenne.d.ts +1 -0
  107. package/dist/cli/src/builtin/modules/number-theory/sequences/padovan.d.ts +2 -0
  108. package/dist/cli/src/builtin/modules/number-theory/sequences/partition.d.ts +1 -0
  109. package/dist/cli/src/builtin/modules/number-theory/sequences/pell.d.ts +1 -0
  110. package/dist/cli/src/builtin/modules/number-theory/sequences/perfect.d.ts +1 -0
  111. package/dist/cli/src/builtin/modules/number-theory/sequences/perfectCube.d.ts +2 -0
  112. package/dist/cli/src/builtin/modules/number-theory/sequences/perfectPower.d.ts +10 -0
  113. package/dist/cli/src/builtin/modules/number-theory/sequences/perfectSquare.d.ts +2 -0
  114. package/dist/cli/src/builtin/modules/number-theory/sequences/poligonal.d.ts +2 -0
  115. package/dist/cli/src/builtin/modules/number-theory/sequences/prime.d.ts +3 -0
  116. package/dist/cli/src/builtin/modules/number-theory/sequences/recaman.d.ts +9 -0
  117. package/dist/cli/src/builtin/modules/number-theory/sequences/sylvester.d.ts +1 -0
  118. package/dist/cli/src/builtin/modules/number-theory/sequences/thueMorse.d.ts +2 -0
  119. package/dist/cli/src/builtin/modules/number-theory/sequences/tribonacci.d.ts +1 -0
  120. package/dist/cli/src/builtin/modules/random/docs.d.ts +2 -0
  121. package/dist/cli/src/builtin/modules/random/index.d.ts +2 -0
  122. package/dist/cli/src/builtin/modules/sequence/index.d.ts +2 -0
  123. package/dist/cli/src/builtin/modules/string/index.d.ts +2 -0
  124. package/dist/cli/src/builtin/modules/vector/bincount.d.ts +9 -0
  125. package/dist/cli/src/builtin/modules/vector/calcMad.d.ts +1 -0
  126. package/dist/cli/src/builtin/modules/vector/calcMean.d.ts +1 -0
  127. package/dist/cli/src/builtin/modules/vector/calcMedad.d.ts +1 -0
  128. package/dist/cli/src/builtin/modules/vector/calcMedian.d.ts +1 -0
  129. package/dist/cli/src/builtin/modules/vector/calcStdDev.d.ts +2 -0
  130. package/dist/cli/src/builtin/modules/vector/calcVariance.d.ts +2 -0
  131. package/dist/cli/src/builtin/modules/vector/docs.d.ts +2 -0
  132. package/dist/cli/src/builtin/modules/vector/entropy.d.ts +8 -0
  133. package/dist/cli/src/builtin/modules/vector/histogram.d.ts +9 -0
  134. package/dist/cli/src/builtin/modules/vector/index.d.ts +2 -0
  135. package/dist/cli/src/builtin/modules/vector/mode.d.ts +6 -0
  136. package/dist/cli/src/builtin/modules/vector/outliers.d.ts +7 -0
  137. package/dist/cli/src/builtin/modules/vector/percentile.d.ts +7 -0
  138. package/dist/cli/src/builtin/modules/vector/quartiles.d.ts +1 -0
  139. package/dist/cli/src/builtin/modules/vector/reductionFunctions/entropy.d.ts +2 -0
  140. package/dist/cli/src/builtin/modules/vector/reductionFunctions/giniCoefficient.d.ts +2 -0
  141. package/dist/cli/src/builtin/modules/vector/reductionFunctions/index.d.ts +13 -0
  142. package/dist/cli/src/builtin/modules/vector/reductionFunctions/iqr.d.ts +2 -0
  143. package/dist/cli/src/builtin/modules/vector/reductionFunctions/kurtosis.d.ts +5 -0
  144. package/dist/cli/src/builtin/modules/vector/reductionFunctions/mad.d.ts +2 -0
  145. package/dist/cli/src/builtin/modules/vector/reductionFunctions/mean.d.ts +4 -0
  146. package/dist/cli/src/builtin/modules/vector/reductionFunctions/medad.d.ts +2 -0
  147. package/dist/cli/src/builtin/modules/vector/reductionFunctions/median.d.ts +2 -0
  148. package/dist/cli/src/builtin/modules/vector/reductionFunctions/prod.d.ts +2 -0
  149. package/dist/cli/src/builtin/modules/vector/reductionFunctions/rms.d.ts +2 -0
  150. package/dist/cli/src/builtin/modules/vector/reductionFunctions/skewness.d.ts +3 -0
  151. package/dist/cli/src/builtin/modules/vector/reductionFunctions/span.d.ts +2 -0
  152. package/dist/cli/src/builtin/modules/vector/reductionFunctions/standardDeviation.d.ts +3 -0
  153. package/dist/cli/src/builtin/modules/vector/reductionFunctions/sum.d.ts +2 -0
  154. package/dist/cli/src/builtin/modules/vector/reductionFunctions/variance.d.ts +3 -0
  155. package/dist/cli/src/builtin/normalExpressions/index.d.ts +7 -1
  156. package/dist/cli/src/builtin/specialExpressionTypes.d.ts +23 -0
  157. package/dist/cli/src/builtin/specialExpressions/and.d.ts +3 -3
  158. package/dist/cli/src/builtin/specialExpressions/array.d.ts +6 -0
  159. package/dist/cli/src/builtin/specialExpressions/block.d.ts +6 -0
  160. package/dist/cli/src/builtin/specialExpressions/cond.d.ts +3 -3
  161. package/dist/cli/src/builtin/specialExpressions/def.d.ts +5 -4
  162. package/dist/cli/src/builtin/specialExpressions/defined.d.ts +5 -0
  163. package/dist/cli/src/builtin/specialExpressions/functions.d.ts +5 -17
  164. package/dist/cli/src/builtin/specialExpressions/if.d.ts +3 -3
  165. package/dist/cli/src/builtin/specialExpressions/let.d.ts +3 -7
  166. package/dist/cli/src/builtin/specialExpressions/loop.d.ts +3 -4
  167. package/dist/cli/src/builtin/specialExpressions/loops.d.ts +5 -14
  168. package/dist/cli/src/builtin/specialExpressions/object.d.ts +6 -0
  169. package/dist/cli/src/builtin/specialExpressions/or.d.ts +3 -3
  170. package/dist/cli/src/builtin/specialExpressions/qq.d.ts +3 -3
  171. package/dist/cli/src/builtin/specialExpressions/recur.d.ts +3 -3
  172. package/dist/cli/src/builtin/specialExpressions/switch.d.ts +6 -0
  173. package/dist/cli/src/builtin/specialExpressions/throw.d.ts +3 -3
  174. package/dist/cli/src/builtin/specialExpressions/try.d.ts +3 -5
  175. package/dist/cli/src/builtin/specialExpressions/unless.d.ts +6 -0
  176. package/dist/cli/src/builtin/utils.d.ts +3 -15
  177. package/dist/cli/src/cli.d.ts +1 -1
  178. package/dist/cli/src/cliDocumentation/getCliType.d.ts +1 -1
  179. package/dist/cli/src/colorizer.d.ts +36 -36
  180. package/dist/cli/src/constants/constants.d.ts +18 -44
  181. package/dist/cli/src/errors.d.ts +2 -5
  182. package/dist/cli/src/evaluator/ContextStack.d.ts +16 -11
  183. package/dist/cli/src/evaluator/functionExecutors.d.ts +4 -4
  184. package/dist/cli/src/evaluator/index.d.ts +2 -2
  185. package/dist/cli/src/evaluator/interface.d.ts +5 -5
  186. package/dist/cli/src/getUndefinedSymbols/index.d.ts +7 -0
  187. package/dist/cli/src/index.d.ts +9 -12
  188. package/dist/cli/src/initReferenceData.d.ts +1 -0
  189. package/dist/cli/src/interface.d.ts +1 -2
  190. package/dist/cli/src/js-interop/Cli/Fs/index.d.ts +2 -0
  191. package/dist/cli/src/js-interop/Cli/Proc/index.d.ts +3 -0
  192. package/dist/cli/src/js-interop/Cli/index.d.ts +3 -0
  193. package/dist/cli/src/js-interop/utils.d.ts +2 -0
  194. package/dist/cli/src/parser/Parser.d.ts +58 -0
  195. package/dist/cli/src/parser/types.d.ts +133 -0
  196. package/dist/cli/src/symbolPatterns.d.ts +2 -0
  197. package/dist/cli/src/tokenizer/minifyTokenStream.d.ts +4 -0
  198. package/dist/cli/src/tokenizer/operators.d.ts +12 -0
  199. package/dist/cli/src/tokenizer/reservedNames.d.ts +66 -0
  200. package/dist/cli/src/tokenizer/token.d.ts +86 -0
  201. package/dist/cli/src/tokenizer/tokenize.d.ts +8 -0
  202. package/dist/cli/src/tokenizer/tokenizers.d.ts +14 -19
  203. package/dist/cli/src/transformer/index.d.ts +2 -2
  204. package/dist/cli/src/typeGuards/annotatedArrays.d.ts +16 -0
  205. package/dist/cli/src/typeGuards/array.d.ts +1 -1
  206. package/dist/cli/src/typeGuards/astNode.d.ts +20 -17
  207. package/dist/cli/src/typeGuards/index.d.ts +1 -10
  208. package/dist/cli/src/typeGuards/lits.d.ts +5 -2
  209. package/dist/cli/src/typeGuards/litsFunction.d.ts +3 -3
  210. package/dist/cli/src/typeGuards/number.d.ts +1 -1
  211. package/dist/cli/src/typeGuards/string.d.ts +1 -1
  212. package/dist/cli/src/untokenizer/index.d.ts +1 -1
  213. package/dist/cli/src/utils/arity.d.ts +10 -0
  214. package/dist/cli/src/utils/debug/debugTools.d.ts +0 -2
  215. package/dist/cli/src/utils/debug/getCodeMarker.d.ts +2 -0
  216. package/dist/cli/src/utils/debug/getSourceCodeInfo.d.ts +2 -2
  217. package/dist/cli/src/utils/docString/generateDocString.d.ts +2 -0
  218. package/dist/cli/src/utils/getAssertionError.d.ts +1 -1
  219. package/dist/cli/src/utils/index.d.ts +9 -6
  220. package/dist/full.esm.js +2 -0
  221. package/dist/full.esm.js.map +1 -0
  222. package/dist/full.js +2 -0
  223. package/dist/full.js.map +1 -0
  224. package/dist/index.esm.js +1 -15635
  225. package/dist/index.esm.js.map +1 -1
  226. package/dist/index.js +1 -15663
  227. package/dist/index.js.map +1 -1
  228. package/dist/lits.iife.js +1 -15668
  229. package/dist/lits.iife.js.map +1 -1
  230. package/dist/modules/assert.esm.js +2 -0
  231. package/dist/modules/assert.esm.js.map +1 -0
  232. package/dist/modules/assert.js +2 -0
  233. package/dist/modules/assert.js.map +1 -0
  234. package/dist/modules/bitwise.esm.js +2 -0
  235. package/dist/modules/bitwise.esm.js.map +1 -0
  236. package/dist/modules/bitwise.js +2 -0
  237. package/dist/modules/bitwise.js.map +1 -0
  238. package/dist/modules/cli/src/cli.d.ts +2 -0
  239. package/dist/modules/cli/src/cliDocumentation/formatCliDescription.d.ts +3 -0
  240. package/dist/modules/cli/src/cliDocumentation/getCliArgumentInfo.d.ts +3 -0
  241. package/dist/modules/cli/src/cliDocumentation/getCliDocumentation.d.ts +2 -0
  242. package/dist/modules/cli/src/cliDocumentation/getCliFunctionExamples.d.ts +3 -0
  243. package/dist/modules/cli/src/cliDocumentation/getCliFunctionSignature.d.ts +3 -0
  244. package/dist/modules/cli/src/cliDocumentation/getCliTitle.d.ts +3 -0
  245. package/dist/modules/cli/src/cliDocumentation/getCliType.d.ts +3 -0
  246. package/dist/modules/cli/src/cliFormatterRules.d.ts +13 -0
  247. package/dist/modules/cli/src/colorizer.d.ts +939 -0
  248. package/dist/modules/cli/src/createReadlineInterface.d.ts +5 -0
  249. package/dist/modules/cli/src/js-interop/Cli/Fs/index.d.ts +2 -0
  250. package/dist/modules/cli/src/js-interop/Cli/Proc/index.d.ts +3 -0
  251. package/dist/modules/cli/src/js-interop/Cli/index.d.ts +3 -0
  252. package/dist/modules/cli/src/js-interop/utils.d.ts +2 -0
  253. package/dist/modules/collection.esm.js +2 -0
  254. package/dist/modules/collection.esm.js.map +1 -0
  255. package/dist/modules/collection.js +2 -0
  256. package/dist/modules/collection.js.map +1 -0
  257. package/dist/modules/common/createFormatter.d.ts +6 -0
  258. package/dist/modules/common/utils.d.ts +2 -0
  259. package/dist/modules/functional.esm.js +2 -0
  260. package/dist/modules/functional.esm.js.map +1 -0
  261. package/dist/modules/functional.js +2 -0
  262. package/dist/modules/functional.js.map +1 -0
  263. package/dist/modules/grid.esm.js +2 -0
  264. package/dist/modules/grid.esm.js.map +1 -0
  265. package/dist/modules/grid.js +2 -0
  266. package/dist/modules/grid.js.map +1 -0
  267. package/dist/modules/linear-algebra.esm.js +2 -0
  268. package/dist/modules/linear-algebra.esm.js.map +1 -0
  269. package/dist/modules/linear-algebra.js +2 -0
  270. package/dist/modules/linear-algebra.js.map +1 -0
  271. package/dist/modules/math.esm.js +2 -0
  272. package/dist/modules/math.esm.js.map +1 -0
  273. package/dist/modules/math.js +2 -0
  274. package/dist/modules/math.js.map +1 -0
  275. package/dist/modules/matrix.esm.js +2 -0
  276. package/dist/modules/matrix.esm.js.map +1 -0
  277. package/dist/modules/matrix.js +2 -0
  278. package/dist/modules/matrix.js.map +1 -0
  279. package/dist/modules/number-theory.esm.js +2 -0
  280. package/dist/modules/number-theory.esm.js.map +1 -0
  281. package/dist/modules/number-theory.js +2 -0
  282. package/dist/modules/number-theory.js.map +1 -0
  283. package/dist/modules/random.esm.js +2 -0
  284. package/dist/modules/random.esm.js.map +1 -0
  285. package/dist/modules/random.js +2 -0
  286. package/dist/modules/random.js.map +1 -0
  287. package/dist/modules/reference/api.d.ts +71 -0
  288. package/dist/modules/reference/datatype.d.ts +3 -0
  289. package/dist/modules/reference/index.d.ts +178 -0
  290. package/dist/modules/reference/shorthand.d.ts +3 -0
  291. package/dist/modules/sequence.esm.js +2 -0
  292. package/dist/modules/sequence.esm.js.map +1 -0
  293. package/dist/modules/sequence.js +2 -0
  294. package/dist/modules/sequence.js.map +1 -0
  295. package/dist/modules/src/AutoCompleter/AutoCompleter.d.ts +24 -0
  296. package/dist/modules/src/Lits/Cache.d.ts +16 -0
  297. package/dist/modules/src/Lits/Lits.d.ts +58 -0
  298. package/dist/modules/src/allModules.d.ts +2 -0
  299. package/dist/modules/src/builtin/bindingNode.d.ts +5 -0
  300. package/dist/{src/builtin/normalExpressions/categories → modules/src/builtin/core}/array.d.ts +1 -1
  301. package/dist/{src/builtin/normalExpressions/categories → modules/src/builtin/core}/bitwise.d.ts +1 -1
  302. package/dist/{cli/src/builtin/normalExpressions/categories → modules/src/builtin/core}/collection.d.ts +1 -1
  303. package/dist/{cli/src/builtin/normalExpressions/categories → modules/src/builtin/core}/functional.d.ts +1 -1
  304. package/dist/{cli/src/builtin/normalExpressions/categories → modules/src/builtin/core}/math.d.ts +1 -1
  305. package/dist/modules/src/builtin/core/meta.d.ts +3 -0
  306. package/dist/{src/builtin/normalExpressions/categories → modules/src/builtin/core}/misc.d.ts +1 -1
  307. package/dist/{cli/src/builtin/normalExpressions/categories → modules/src/builtin/core}/object.d.ts +1 -1
  308. package/dist/{cli/src/builtin/normalExpressions/categories → modules/src/builtin/core}/predicates.d.ts +1 -1
  309. package/dist/{cli/src/builtin/normalExpressions/categories → modules/src/builtin/core}/regexp.d.ts +1 -1
  310. package/dist/modules/src/builtin/core/sequence.d.ts +2 -0
  311. package/dist/{src/builtin/normalExpressions/categories → modules/src/builtin/core}/string.d.ts +1 -1
  312. package/dist/modules/src/builtin/core/vector.d.ts +2 -0
  313. package/dist/modules/src/builtin/index.d.ts +14 -0
  314. package/dist/modules/src/builtin/interface.d.ts +110 -0
  315. package/dist/modules/src/builtin/modules/assert/docs.d.ts +2 -0
  316. package/dist/modules/src/builtin/modules/assert/index.d.ts +2 -0
  317. package/dist/modules/src/builtin/modules/bitwise/index.d.ts +2 -0
  318. package/dist/modules/src/builtin/modules/collection/index.d.ts +2 -0
  319. package/dist/modules/src/builtin/modules/functional/index.d.ts +2 -0
  320. package/dist/modules/src/builtin/modules/grid/docs.d.ts +2 -0
  321. package/dist/modules/src/builtin/modules/grid/fromArray.d.ts +8 -0
  322. package/dist/modules/src/builtin/modules/grid/index.d.ts +2 -0
  323. package/dist/modules/src/builtin/modules/grid/transpose.d.ts +2 -0
  324. package/dist/modules/src/builtin/modules/interface.d.ts +11 -0
  325. package/dist/modules/src/builtin/modules/linear-algebra/docs.d.ts +2 -0
  326. package/dist/modules/src/builtin/modules/linear-algebra/helpers/calcFractionalRanks.d.ts +1 -0
  327. package/dist/modules/src/builtin/modules/linear-algebra/helpers/collinear.d.ts +2 -0
  328. package/dist/modules/src/builtin/modules/linear-algebra/helpers/corrleation.d.ts +8 -0
  329. package/dist/modules/src/builtin/modules/linear-algebra/helpers/covariance.d.ts +4 -0
  330. package/dist/modules/src/builtin/modules/linear-algebra/helpers/dot.d.ts +1 -0
  331. package/dist/modules/src/builtin/modules/linear-algebra/helpers/gaussJordanElimination.d.ts +7 -0
  332. package/dist/modules/src/builtin/modules/linear-algebra/helpers/getUnit.d.ts +2 -0
  333. package/dist/modules/src/builtin/modules/linear-algebra/helpers/isZeroVector.d.ts +1 -0
  334. package/dist/modules/src/builtin/modules/linear-algebra/helpers/kendallTau.d.ts +10 -0
  335. package/dist/modules/src/builtin/modules/linear-algebra/helpers/length.d.ts +1 -0
  336. package/dist/modules/src/builtin/modules/linear-algebra/helpers/pearsonCorr.d.ts +1 -0
  337. package/dist/modules/src/builtin/modules/linear-algebra/helpers/scale.d.ts +1 -0
  338. package/dist/modules/src/builtin/modules/linear-algebra/helpers/solve.d.ts +8 -0
  339. package/dist/modules/src/builtin/modules/linear-algebra/helpers/subtract.d.ts +1 -0
  340. package/dist/modules/src/builtin/modules/linear-algebra/index.d.ts +4 -0
  341. package/dist/modules/src/builtin/modules/math/index.d.ts +2 -0
  342. package/dist/modules/src/builtin/modules/matrix/docs.d.ts +2 -0
  343. package/dist/modules/src/builtin/modules/matrix/helpers/adjugate.d.ts +1 -0
  344. package/dist/modules/src/builtin/modules/matrix/helpers/band.d.ts +9 -0
  345. package/dist/modules/src/builtin/modules/matrix/helpers/cofactor.d.ts +1 -0
  346. package/dist/modules/src/builtin/modules/matrix/helpers/determinant.d.ts +6 -0
  347. package/dist/modules/src/builtin/modules/matrix/helpers/diagonal.d.ts +1 -0
  348. package/dist/modules/src/builtin/modules/matrix/helpers/inverse.d.ts +6 -0
  349. package/dist/modules/src/builtin/modules/matrix/helpers/isBanded.d.ts +11 -0
  350. package/dist/modules/src/builtin/modules/matrix/helpers/isDiagonal.d.ts +10 -0
  351. package/dist/modules/src/builtin/modules/matrix/helpers/isIdentity.d.ts +1 -0
  352. package/dist/modules/src/builtin/modules/matrix/helpers/isOrthogonal.d.ts +1 -0
  353. package/dist/modules/src/builtin/modules/matrix/helpers/isSquare.d.ts +1 -0
  354. package/dist/modules/src/builtin/modules/matrix/helpers/isSymetric.d.ts +8 -0
  355. package/dist/modules/src/builtin/modules/matrix/helpers/isTriangular.d.ts +13 -0
  356. package/dist/modules/src/builtin/modules/matrix/helpers/matrixMultiply.d.ts +7 -0
  357. package/dist/modules/src/builtin/modules/matrix/helpers/minor.d.ts +1 -0
  358. package/dist/modules/src/builtin/modules/matrix/helpers/norm1.d.ts +1 -0
  359. package/dist/modules/src/builtin/modules/matrix/helpers/trace.d.ts +8 -0
  360. package/dist/modules/src/builtin/modules/matrix/index.d.ts +4 -0
  361. package/dist/modules/src/builtin/modules/number-theory/binomialCefficient.d.ts +1 -0
  362. package/dist/modules/src/builtin/modules/number-theory/combinations.d.ts +2 -0
  363. package/dist/modules/src/builtin/modules/number-theory/derangements.d.ts +2 -0
  364. package/dist/modules/src/builtin/modules/number-theory/divisors.d.ts +4 -0
  365. package/dist/modules/src/builtin/modules/number-theory/docs.d.ts +2 -0
  366. package/dist/modules/src/builtin/modules/number-theory/factorial.d.ts +3 -0
  367. package/dist/modules/src/builtin/modules/number-theory/index.d.ts +4 -0
  368. package/dist/modules/src/builtin/modules/number-theory/partitions.d.ts +2 -0
  369. package/dist/modules/src/builtin/modules/number-theory/permutations.d.ts +2 -0
  370. package/dist/modules/src/builtin/modules/number-theory/powerSet.d.ts +2 -0
  371. package/dist/modules/src/builtin/modules/number-theory/primeFactors.d.ts +11 -0
  372. package/dist/modules/src/builtin/modules/number-theory/sequences/abundant.d.ts +2 -0
  373. package/dist/modules/src/builtin/modules/number-theory/sequences/arithmetic.d.ts +2 -0
  374. package/dist/modules/src/builtin/modules/number-theory/sequences/bell.d.ts +1 -0
  375. package/dist/modules/src/builtin/modules/number-theory/sequences/bernoulli.d.ts +2 -0
  376. package/dist/modules/src/builtin/modules/number-theory/sequences/catalan.d.ts +1 -0
  377. package/dist/modules/src/builtin/modules/number-theory/sequences/collatz.d.ts +2 -0
  378. package/dist/modules/src/builtin/modules/number-theory/sequences/composite.d.ts +3 -0
  379. package/dist/modules/src/builtin/modules/number-theory/sequences/deficient.d.ts +2 -0
  380. package/dist/modules/src/builtin/modules/number-theory/sequences/factorial.d.ts +1 -0
  381. package/dist/modules/src/builtin/modules/number-theory/sequences/fibonacci.d.ts +1 -0
  382. package/dist/modules/src/builtin/modules/number-theory/sequences/geometric.d.ts +2 -0
  383. package/dist/modules/src/builtin/modules/number-theory/sequences/golomb.d.ts +2 -0
  384. package/dist/modules/src/builtin/modules/number-theory/sequences/happy.d.ts +2 -0
  385. package/dist/modules/src/builtin/modules/number-theory/sequences/index.d.ts +26 -0
  386. package/dist/modules/src/builtin/modules/number-theory/sequences/juggler.d.ts +2 -0
  387. package/dist/modules/src/builtin/modules/number-theory/sequences/lookAndSay.d.ts +2 -0
  388. package/dist/modules/src/builtin/modules/number-theory/sequences/lucas.d.ts +1 -0
  389. package/dist/modules/src/builtin/modules/number-theory/sequences/lucky.d.ts +2 -0
  390. package/dist/modules/src/builtin/modules/number-theory/sequences/mersenne.d.ts +1 -0
  391. package/dist/modules/src/builtin/modules/number-theory/sequences/padovan.d.ts +2 -0
  392. package/dist/modules/src/builtin/modules/number-theory/sequences/partition.d.ts +1 -0
  393. package/dist/modules/src/builtin/modules/number-theory/sequences/pell.d.ts +1 -0
  394. package/dist/modules/src/builtin/modules/number-theory/sequences/perfect.d.ts +1 -0
  395. package/dist/modules/src/builtin/modules/number-theory/sequences/perfectCube.d.ts +2 -0
  396. package/dist/modules/src/builtin/modules/number-theory/sequences/perfectPower.d.ts +10 -0
  397. package/dist/modules/src/builtin/modules/number-theory/sequences/perfectSquare.d.ts +2 -0
  398. package/dist/modules/src/builtin/modules/number-theory/sequences/poligonal.d.ts +2 -0
  399. package/dist/modules/src/builtin/modules/number-theory/sequences/prime.d.ts +3 -0
  400. package/dist/modules/src/builtin/modules/number-theory/sequences/recaman.d.ts +9 -0
  401. package/dist/modules/src/builtin/modules/number-theory/sequences/sylvester.d.ts +1 -0
  402. package/dist/modules/src/builtin/modules/number-theory/sequences/thueMorse.d.ts +2 -0
  403. package/dist/modules/src/builtin/modules/number-theory/sequences/tribonacci.d.ts +1 -0
  404. package/dist/modules/src/builtin/modules/random/docs.d.ts +2 -0
  405. package/dist/modules/src/builtin/modules/random/index.d.ts +2 -0
  406. package/dist/modules/src/builtin/modules/sequence/index.d.ts +2 -0
  407. package/dist/modules/src/builtin/modules/string/index.d.ts +2 -0
  408. package/dist/modules/src/builtin/modules/vector/bincount.d.ts +9 -0
  409. package/dist/modules/src/builtin/modules/vector/calcMad.d.ts +1 -0
  410. package/dist/modules/src/builtin/modules/vector/calcMean.d.ts +1 -0
  411. package/dist/modules/src/builtin/modules/vector/calcMedad.d.ts +1 -0
  412. package/dist/modules/src/builtin/modules/vector/calcMedian.d.ts +1 -0
  413. package/dist/modules/src/builtin/modules/vector/calcStdDev.d.ts +2 -0
  414. package/dist/modules/src/builtin/modules/vector/calcVariance.d.ts +2 -0
  415. package/dist/modules/src/builtin/modules/vector/docs.d.ts +2 -0
  416. package/dist/modules/src/builtin/modules/vector/entropy.d.ts +8 -0
  417. package/dist/modules/src/builtin/modules/vector/histogram.d.ts +9 -0
  418. package/dist/modules/src/builtin/modules/vector/index.d.ts +2 -0
  419. package/dist/modules/src/builtin/modules/vector/mode.d.ts +6 -0
  420. package/dist/modules/src/builtin/modules/vector/outliers.d.ts +7 -0
  421. package/dist/modules/src/builtin/modules/vector/percentile.d.ts +7 -0
  422. package/dist/modules/src/builtin/modules/vector/quartiles.d.ts +1 -0
  423. package/dist/modules/src/builtin/modules/vector/reductionFunctions/entropy.d.ts +2 -0
  424. package/dist/modules/src/builtin/modules/vector/reductionFunctions/giniCoefficient.d.ts +2 -0
  425. package/dist/modules/src/builtin/modules/vector/reductionFunctions/index.d.ts +13 -0
  426. package/dist/modules/src/builtin/modules/vector/reductionFunctions/iqr.d.ts +2 -0
  427. package/dist/modules/src/builtin/modules/vector/reductionFunctions/kurtosis.d.ts +5 -0
  428. package/dist/modules/src/builtin/modules/vector/reductionFunctions/mad.d.ts +2 -0
  429. package/dist/modules/src/builtin/modules/vector/reductionFunctions/mean.d.ts +4 -0
  430. package/dist/modules/src/builtin/modules/vector/reductionFunctions/medad.d.ts +2 -0
  431. package/dist/modules/src/builtin/modules/vector/reductionFunctions/median.d.ts +2 -0
  432. package/dist/modules/src/builtin/modules/vector/reductionFunctions/prod.d.ts +2 -0
  433. package/dist/modules/src/builtin/modules/vector/reductionFunctions/rms.d.ts +2 -0
  434. package/dist/modules/src/builtin/modules/vector/reductionFunctions/skewness.d.ts +3 -0
  435. package/dist/modules/src/builtin/modules/vector/reductionFunctions/span.d.ts +2 -0
  436. package/dist/modules/src/builtin/modules/vector/reductionFunctions/standardDeviation.d.ts +3 -0
  437. package/dist/modules/src/builtin/modules/vector/reductionFunctions/sum.d.ts +2 -0
  438. package/dist/modules/src/builtin/modules/vector/reductionFunctions/variance.d.ts +3 -0
  439. package/dist/modules/src/builtin/normalExpressions/index.d.ts +8 -0
  440. package/dist/modules/src/builtin/specialExpressionTypes.d.ts +23 -0
  441. package/dist/modules/src/builtin/specialExpressions/and.d.ts +6 -0
  442. package/dist/modules/src/builtin/specialExpressions/array.d.ts +6 -0
  443. package/dist/modules/src/builtin/specialExpressions/block.d.ts +6 -0
  444. package/dist/modules/src/builtin/specialExpressions/cond.d.ts +6 -0
  445. package/dist/modules/src/builtin/specialExpressions/def.d.ts +6 -0
  446. package/dist/modules/src/builtin/specialExpressions/defined.d.ts +5 -0
  447. package/dist/modules/src/builtin/specialExpressions/functions.d.ts +6 -0
  448. package/dist/modules/src/builtin/specialExpressions/if.d.ts +6 -0
  449. package/dist/modules/src/builtin/specialExpressions/let.d.ts +6 -0
  450. package/dist/modules/src/builtin/specialExpressions/loop.d.ts +6 -0
  451. package/dist/modules/src/builtin/specialExpressions/loops.d.ts +9 -0
  452. package/dist/modules/src/builtin/specialExpressions/object.d.ts +6 -0
  453. package/dist/modules/src/builtin/specialExpressions/or.d.ts +6 -0
  454. package/dist/modules/src/builtin/specialExpressions/qq.d.ts +6 -0
  455. package/dist/modules/src/builtin/specialExpressions/recur.d.ts +5 -0
  456. package/dist/modules/src/builtin/specialExpressions/switch.d.ts +6 -0
  457. package/dist/modules/src/builtin/specialExpressions/throw.d.ts +5 -0
  458. package/dist/modules/src/builtin/specialExpressions/try.d.ts +6 -0
  459. package/dist/modules/src/builtin/specialExpressions/unless.d.ts +6 -0
  460. package/dist/modules/src/builtin/utils.d.ts +6 -0
  461. package/dist/modules/src/constants/constants.d.ts +19 -0
  462. package/dist/modules/src/errors.d.ts +24 -0
  463. package/dist/modules/src/evaluator/ContextStack.d.ts +29 -0
  464. package/dist/modules/src/evaluator/functionExecutors.d.ts +11 -0
  465. package/dist/modules/src/evaluator/index.d.ts +5 -0
  466. package/dist/modules/src/evaluator/interface.d.ts +12 -0
  467. package/dist/modules/src/full.d.ts +17 -0
  468. package/dist/modules/src/getUndefinedSymbols/index.d.ts +7 -0
  469. package/dist/modules/src/index.d.ts +14 -0
  470. package/dist/modules/src/initReferenceData.d.ts +1 -0
  471. package/dist/modules/src/interface.d.ts +7 -0
  472. package/dist/modules/src/modules/assert.d.ts +2 -0
  473. package/dist/modules/src/modules/bitwise.d.ts +2 -0
  474. package/dist/modules/src/modules/collection.d.ts +2 -0
  475. package/dist/modules/src/modules/functional.d.ts +2 -0
  476. package/dist/modules/src/modules/grid.d.ts +2 -0
  477. package/dist/modules/src/modules/linear-algebra.d.ts +2 -0
  478. package/dist/modules/src/modules/math.d.ts +2 -0
  479. package/dist/modules/src/modules/matrix.d.ts +2 -0
  480. package/dist/modules/src/modules/number-theory.d.ts +2 -0
  481. package/dist/modules/src/modules/random.d.ts +2 -0
  482. package/dist/modules/src/modules/sequence.d.ts +2 -0
  483. package/dist/modules/src/modules/string.d.ts +2 -0
  484. package/dist/modules/src/modules/vector.d.ts +2 -0
  485. package/dist/modules/src/parser/Parser.d.ts +58 -0
  486. package/dist/modules/src/parser/types.d.ts +133 -0
  487. package/dist/modules/src/symbolPatterns.d.ts +2 -0
  488. package/dist/modules/src/testFramework/index.d.ts +14 -0
  489. package/dist/modules/src/tokenizer/minifyTokenStream.d.ts +4 -0
  490. package/dist/modules/src/tokenizer/operators.d.ts +12 -0
  491. package/dist/modules/src/tokenizer/reservedNames.d.ts +66 -0
  492. package/dist/modules/src/tokenizer/token.d.ts +86 -0
  493. package/dist/modules/src/tokenizer/tokenize.d.ts +8 -0
  494. package/dist/modules/src/tokenizer/tokenizers.d.ts +14 -0
  495. package/dist/modules/src/transformer/index.d.ts +2 -0
  496. package/dist/modules/src/typeGuards/annotatedArrays.d.ts +16 -0
  497. package/dist/modules/src/typeGuards/array.d.ts +9 -0
  498. package/dist/modules/src/typeGuards/astNode.d.ts +20 -0
  499. package/dist/modules/src/typeGuards/index.d.ts +8 -0
  500. package/dist/modules/src/typeGuards/lits.d.ts +24 -0
  501. package/dist/modules/src/typeGuards/litsFunction.d.ts +12 -0
  502. package/dist/modules/src/typeGuards/number.d.ts +66 -0
  503. package/dist/modules/src/typeGuards/string.d.ts +15 -0
  504. package/dist/modules/src/untokenizer/index.d.ts +2 -0
  505. package/dist/modules/src/utils/arity.d.ts +10 -0
  506. package/dist/modules/src/utils/debug/debugTools.d.ts +1 -0
  507. package/dist/modules/src/utils/debug/getCodeMarker.d.ts +2 -0
  508. package/dist/modules/src/utils/debug/getSourceCodeInfo.d.ts +2 -0
  509. package/dist/modules/src/utils/docString/generateDocString.d.ts +2 -0
  510. package/dist/modules/src/utils/getAssertionError.d.ts +3 -0
  511. package/dist/modules/src/utils/index.d.ts +14 -0
  512. package/dist/modules/src/utils/symbols.d.ts +2 -0
  513. package/dist/modules/string.esm.js +2 -0
  514. package/dist/modules/string.esm.js.map +1 -0
  515. package/dist/modules/string.js +2 -0
  516. package/dist/modules/string.js.map +1 -0
  517. package/dist/modules/vector.esm.js +2 -0
  518. package/dist/modules/vector.esm.js.map +1 -0
  519. package/dist/modules/vector.js +2 -0
  520. package/dist/modules/vector.js.map +1 -0
  521. package/dist/reference/api.d.ts +53 -41
  522. package/dist/reference/index.d.ts +150 -23
  523. package/dist/src/AutoCompleter/AutoCompleter.d.ts +24 -0
  524. package/dist/src/Lits/Cache.d.ts +1 -1
  525. package/dist/src/Lits/Lits.d.ts +26 -22
  526. package/dist/src/allModules.d.ts +2 -0
  527. package/dist/src/builtin/bindingNode.d.ts +5 -0
  528. package/dist/src/builtin/core/array.d.ts +2 -0
  529. package/dist/src/builtin/core/bitwise.d.ts +2 -0
  530. package/dist/src/builtin/core/collection.d.ts +2 -0
  531. package/dist/src/builtin/core/functional.d.ts +2 -0
  532. package/dist/src/builtin/core/math.d.ts +2 -0
  533. package/dist/src/builtin/core/meta.d.ts +3 -0
  534. package/dist/src/builtin/core/misc.d.ts +2 -0
  535. package/dist/src/builtin/core/object.d.ts +2 -0
  536. package/dist/src/builtin/core/predicates.d.ts +2 -0
  537. package/dist/src/builtin/core/regexp.d.ts +2 -0
  538. package/dist/src/builtin/core/sequence.d.ts +2 -0
  539. package/dist/src/builtin/core/string.d.ts +2 -0
  540. package/dist/src/builtin/core/vector.d.ts +2 -0
  541. package/dist/src/builtin/index.d.ts +10 -34
  542. package/dist/src/builtin/interface.d.ts +92 -24
  543. package/dist/src/builtin/modules/assert/docs.d.ts +2 -0
  544. package/dist/src/builtin/modules/assert/index.d.ts +2 -0
  545. package/dist/src/builtin/modules/bitwise/index.d.ts +2 -0
  546. package/dist/src/builtin/modules/collection/index.d.ts +2 -0
  547. package/dist/src/builtin/modules/functional/index.d.ts +2 -0
  548. package/dist/src/builtin/modules/grid/docs.d.ts +2 -0
  549. package/dist/src/builtin/modules/grid/fromArray.d.ts +8 -0
  550. package/dist/src/builtin/modules/grid/index.d.ts +2 -0
  551. package/dist/src/builtin/modules/grid/transpose.d.ts +2 -0
  552. package/dist/src/builtin/modules/interface.d.ts +11 -0
  553. package/dist/src/builtin/modules/linear-algebra/docs.d.ts +2 -0
  554. package/dist/src/builtin/modules/linear-algebra/helpers/calcFractionalRanks.d.ts +1 -0
  555. package/dist/src/builtin/modules/linear-algebra/helpers/collinear.d.ts +2 -0
  556. package/dist/src/builtin/modules/linear-algebra/helpers/corrleation.d.ts +8 -0
  557. package/dist/src/builtin/modules/linear-algebra/helpers/covariance.d.ts +4 -0
  558. package/dist/src/builtin/modules/linear-algebra/helpers/dot.d.ts +1 -0
  559. package/dist/src/builtin/modules/linear-algebra/helpers/gaussJordanElimination.d.ts +7 -0
  560. package/dist/src/builtin/modules/linear-algebra/helpers/getUnit.d.ts +2 -0
  561. package/dist/src/builtin/modules/linear-algebra/helpers/isZeroVector.d.ts +1 -0
  562. package/dist/src/builtin/modules/linear-algebra/helpers/kendallTau.d.ts +10 -0
  563. package/dist/src/builtin/modules/linear-algebra/helpers/length.d.ts +1 -0
  564. package/dist/src/builtin/modules/linear-algebra/helpers/pearsonCorr.d.ts +1 -0
  565. package/dist/src/builtin/modules/linear-algebra/helpers/scale.d.ts +1 -0
  566. package/dist/src/builtin/modules/linear-algebra/helpers/solve.d.ts +8 -0
  567. package/dist/src/builtin/modules/linear-algebra/helpers/subtract.d.ts +1 -0
  568. package/dist/src/builtin/modules/linear-algebra/index.d.ts +4 -0
  569. package/dist/src/builtin/modules/math/index.d.ts +2 -0
  570. package/dist/src/builtin/modules/matrix/docs.d.ts +2 -0
  571. package/dist/src/builtin/modules/matrix/helpers/adjugate.d.ts +1 -0
  572. package/dist/src/builtin/modules/matrix/helpers/band.d.ts +9 -0
  573. package/dist/src/builtin/modules/matrix/helpers/cofactor.d.ts +1 -0
  574. package/dist/src/builtin/modules/matrix/helpers/determinant.d.ts +6 -0
  575. package/dist/src/builtin/modules/matrix/helpers/diagonal.d.ts +1 -0
  576. package/dist/src/builtin/modules/matrix/helpers/inverse.d.ts +6 -0
  577. package/dist/src/builtin/modules/matrix/helpers/isBanded.d.ts +11 -0
  578. package/dist/src/builtin/modules/matrix/helpers/isDiagonal.d.ts +10 -0
  579. package/dist/src/builtin/modules/matrix/helpers/isIdentity.d.ts +1 -0
  580. package/dist/src/builtin/modules/matrix/helpers/isOrthogonal.d.ts +1 -0
  581. package/dist/src/builtin/modules/matrix/helpers/isSquare.d.ts +1 -0
  582. package/dist/src/builtin/modules/matrix/helpers/isSymetric.d.ts +8 -0
  583. package/dist/src/builtin/modules/matrix/helpers/isTriangular.d.ts +13 -0
  584. package/dist/src/builtin/modules/matrix/helpers/matrixMultiply.d.ts +7 -0
  585. package/dist/src/builtin/modules/matrix/helpers/minor.d.ts +1 -0
  586. package/dist/src/builtin/modules/matrix/helpers/norm1.d.ts +1 -0
  587. package/dist/src/builtin/modules/matrix/helpers/trace.d.ts +8 -0
  588. package/dist/src/builtin/modules/matrix/index.d.ts +4 -0
  589. package/dist/src/builtin/modules/number-theory/binomialCefficient.d.ts +1 -0
  590. package/dist/src/builtin/modules/number-theory/combinations.d.ts +2 -0
  591. package/dist/src/builtin/modules/number-theory/derangements.d.ts +2 -0
  592. package/dist/src/builtin/modules/number-theory/divisors.d.ts +4 -0
  593. package/dist/src/builtin/modules/number-theory/docs.d.ts +2 -0
  594. package/dist/src/builtin/modules/number-theory/factorial.d.ts +3 -0
  595. package/dist/src/builtin/modules/number-theory/index.d.ts +4 -0
  596. package/dist/src/builtin/modules/number-theory/partitions.d.ts +2 -0
  597. package/dist/src/builtin/modules/number-theory/permutations.d.ts +2 -0
  598. package/dist/src/builtin/modules/number-theory/powerSet.d.ts +2 -0
  599. package/dist/src/builtin/modules/number-theory/primeFactors.d.ts +11 -0
  600. package/dist/src/builtin/modules/number-theory/sequences/abundant.d.ts +2 -0
  601. package/dist/src/builtin/modules/number-theory/sequences/arithmetic.d.ts +2 -0
  602. package/dist/src/builtin/modules/number-theory/sequences/bell.d.ts +1 -0
  603. package/dist/src/builtin/modules/number-theory/sequences/bernoulli.d.ts +2 -0
  604. package/dist/src/builtin/modules/number-theory/sequences/catalan.d.ts +1 -0
  605. package/dist/src/builtin/modules/number-theory/sequences/collatz.d.ts +2 -0
  606. package/dist/src/builtin/modules/number-theory/sequences/composite.d.ts +3 -0
  607. package/dist/src/builtin/modules/number-theory/sequences/deficient.d.ts +2 -0
  608. package/dist/src/builtin/modules/number-theory/sequences/factorial.d.ts +1 -0
  609. package/dist/src/builtin/modules/number-theory/sequences/fibonacci.d.ts +1 -0
  610. package/dist/src/builtin/modules/number-theory/sequences/geometric.d.ts +2 -0
  611. package/dist/src/builtin/modules/number-theory/sequences/golomb.d.ts +2 -0
  612. package/dist/src/builtin/modules/number-theory/sequences/happy.d.ts +2 -0
  613. package/dist/src/builtin/modules/number-theory/sequences/index.d.ts +26 -0
  614. package/dist/src/builtin/modules/number-theory/sequences/juggler.d.ts +2 -0
  615. package/dist/src/builtin/modules/number-theory/sequences/lookAndSay.d.ts +2 -0
  616. package/dist/src/builtin/modules/number-theory/sequences/lucas.d.ts +1 -0
  617. package/dist/src/builtin/modules/number-theory/sequences/lucky.d.ts +2 -0
  618. package/dist/src/builtin/modules/number-theory/sequences/mersenne.d.ts +1 -0
  619. package/dist/src/builtin/modules/number-theory/sequences/padovan.d.ts +2 -0
  620. package/dist/src/builtin/modules/number-theory/sequences/partition.d.ts +1 -0
  621. package/dist/src/builtin/modules/number-theory/sequences/pell.d.ts +1 -0
  622. package/dist/src/builtin/modules/number-theory/sequences/perfect.d.ts +1 -0
  623. package/dist/src/builtin/modules/number-theory/sequences/perfectCube.d.ts +2 -0
  624. package/dist/src/builtin/modules/number-theory/sequences/perfectPower.d.ts +10 -0
  625. package/dist/src/builtin/modules/number-theory/sequences/perfectSquare.d.ts +2 -0
  626. package/dist/src/builtin/modules/number-theory/sequences/poligonal.d.ts +2 -0
  627. package/dist/src/builtin/modules/number-theory/sequences/prime.d.ts +3 -0
  628. package/dist/src/builtin/modules/number-theory/sequences/recaman.d.ts +9 -0
  629. package/dist/src/builtin/modules/number-theory/sequences/sylvester.d.ts +1 -0
  630. package/dist/src/builtin/modules/number-theory/sequences/thueMorse.d.ts +2 -0
  631. package/dist/src/builtin/modules/number-theory/sequences/tribonacci.d.ts +1 -0
  632. package/dist/src/builtin/modules/random/docs.d.ts +2 -0
  633. package/dist/src/builtin/modules/random/index.d.ts +2 -0
  634. package/dist/src/builtin/modules/sequence/index.d.ts +2 -0
  635. package/dist/src/builtin/modules/string/index.d.ts +2 -0
  636. package/dist/src/builtin/modules/vector/bincount.d.ts +9 -0
  637. package/dist/src/builtin/modules/vector/calcMad.d.ts +1 -0
  638. package/dist/src/builtin/modules/vector/calcMean.d.ts +1 -0
  639. package/dist/src/builtin/modules/vector/calcMedad.d.ts +1 -0
  640. package/dist/src/builtin/modules/vector/calcMedian.d.ts +1 -0
  641. package/dist/src/builtin/modules/vector/calcStdDev.d.ts +2 -0
  642. package/dist/src/builtin/modules/vector/calcVariance.d.ts +2 -0
  643. package/dist/src/builtin/modules/vector/docs.d.ts +2 -0
  644. package/dist/src/builtin/modules/vector/entropy.d.ts +8 -0
  645. package/dist/src/builtin/modules/vector/histogram.d.ts +9 -0
  646. package/dist/src/builtin/modules/vector/index.d.ts +2 -0
  647. package/dist/src/builtin/modules/vector/mode.d.ts +6 -0
  648. package/dist/src/builtin/modules/vector/outliers.d.ts +7 -0
  649. package/dist/src/builtin/modules/vector/percentile.d.ts +7 -0
  650. package/dist/src/builtin/modules/vector/quartiles.d.ts +1 -0
  651. package/dist/src/builtin/modules/vector/reductionFunctions/entropy.d.ts +2 -0
  652. package/dist/src/builtin/modules/vector/reductionFunctions/giniCoefficient.d.ts +2 -0
  653. package/dist/src/builtin/modules/vector/reductionFunctions/index.d.ts +13 -0
  654. package/dist/src/builtin/modules/vector/reductionFunctions/iqr.d.ts +2 -0
  655. package/dist/src/builtin/modules/vector/reductionFunctions/kurtosis.d.ts +5 -0
  656. package/dist/src/builtin/modules/vector/reductionFunctions/mad.d.ts +2 -0
  657. package/dist/src/builtin/modules/vector/reductionFunctions/mean.d.ts +4 -0
  658. package/dist/src/builtin/modules/vector/reductionFunctions/medad.d.ts +2 -0
  659. package/dist/src/builtin/modules/vector/reductionFunctions/median.d.ts +2 -0
  660. package/dist/src/builtin/modules/vector/reductionFunctions/prod.d.ts +2 -0
  661. package/dist/src/builtin/modules/vector/reductionFunctions/rms.d.ts +2 -0
  662. package/dist/src/builtin/modules/vector/reductionFunctions/skewness.d.ts +3 -0
  663. package/dist/src/builtin/modules/vector/reductionFunctions/span.d.ts +2 -0
  664. package/dist/src/builtin/modules/vector/reductionFunctions/standardDeviation.d.ts +3 -0
  665. package/dist/src/builtin/modules/vector/reductionFunctions/sum.d.ts +2 -0
  666. package/dist/src/builtin/modules/vector/reductionFunctions/variance.d.ts +3 -0
  667. package/dist/src/builtin/normalExpressions/index.d.ts +7 -1
  668. package/dist/src/builtin/specialExpressionTypes.d.ts +23 -0
  669. package/dist/src/builtin/specialExpressions/and.d.ts +3 -3
  670. package/dist/src/builtin/specialExpressions/array.d.ts +6 -0
  671. package/dist/src/builtin/specialExpressions/block.d.ts +6 -0
  672. package/dist/src/builtin/specialExpressions/cond.d.ts +3 -3
  673. package/dist/src/builtin/specialExpressions/def.d.ts +5 -4
  674. package/dist/src/builtin/specialExpressions/defined.d.ts +5 -0
  675. package/dist/src/builtin/specialExpressions/functions.d.ts +5 -17
  676. package/dist/src/builtin/specialExpressions/if.d.ts +3 -3
  677. package/dist/src/builtin/specialExpressions/let.d.ts +3 -7
  678. package/dist/src/builtin/specialExpressions/loop.d.ts +3 -4
  679. package/dist/src/builtin/specialExpressions/loops.d.ts +5 -14
  680. package/dist/src/builtin/specialExpressions/object.d.ts +6 -0
  681. package/dist/src/builtin/specialExpressions/or.d.ts +3 -3
  682. package/dist/src/builtin/specialExpressions/qq.d.ts +3 -3
  683. package/dist/src/builtin/specialExpressions/recur.d.ts +3 -3
  684. package/dist/src/builtin/specialExpressions/switch.d.ts +6 -0
  685. package/dist/src/builtin/specialExpressions/throw.d.ts +3 -3
  686. package/dist/src/builtin/specialExpressions/try.d.ts +3 -5
  687. package/dist/src/builtin/specialExpressions/unless.d.ts +6 -0
  688. package/dist/src/builtin/utils.d.ts +3 -15
  689. package/dist/src/constants/constants.d.ts +18 -44
  690. package/dist/src/errors.d.ts +2 -5
  691. package/dist/src/evaluator/ContextStack.d.ts +16 -11
  692. package/dist/src/evaluator/functionExecutors.d.ts +4 -4
  693. package/dist/src/evaluator/index.d.ts +2 -2
  694. package/dist/src/evaluator/interface.d.ts +5 -5
  695. package/dist/src/full.d.ts +17 -0
  696. package/dist/src/getUndefinedSymbols/index.d.ts +7 -0
  697. package/dist/src/index.d.ts +9 -12
  698. package/dist/src/initReferenceData.d.ts +1 -0
  699. package/dist/src/interface.d.ts +1 -2
  700. package/dist/src/modules/assert.d.ts +2 -0
  701. package/dist/src/modules/bitwise.d.ts +2 -0
  702. package/dist/src/modules/collection.d.ts +2 -0
  703. package/dist/src/modules/functional.d.ts +2 -0
  704. package/dist/src/modules/grid.d.ts +2 -0
  705. package/dist/src/modules/linear-algebra.d.ts +2 -0
  706. package/dist/src/modules/math.d.ts +2 -0
  707. package/dist/src/modules/matrix.d.ts +2 -0
  708. package/dist/src/modules/number-theory.d.ts +2 -0
  709. package/dist/src/modules/random.d.ts +2 -0
  710. package/dist/src/modules/sequence.d.ts +2 -0
  711. package/dist/src/modules/string.d.ts +2 -0
  712. package/dist/src/modules/vector.d.ts +2 -0
  713. package/dist/src/parser/Parser.d.ts +58 -0
  714. package/dist/src/parser/types.d.ts +133 -0
  715. package/dist/src/symbolPatterns.d.ts +2 -0
  716. package/dist/src/tokenizer/minifyTokenStream.d.ts +4 -0
  717. package/dist/src/tokenizer/operators.d.ts +12 -0
  718. package/dist/src/tokenizer/reservedNames.d.ts +66 -0
  719. package/dist/src/tokenizer/token.d.ts +86 -0
  720. package/dist/src/tokenizer/tokenize.d.ts +8 -0
  721. package/dist/src/tokenizer/tokenizers.d.ts +14 -19
  722. package/dist/src/transformer/index.d.ts +2 -2
  723. package/dist/src/typeGuards/annotatedArrays.d.ts +16 -0
  724. package/dist/src/typeGuards/array.d.ts +1 -1
  725. package/dist/src/typeGuards/astNode.d.ts +20 -17
  726. package/dist/src/typeGuards/index.d.ts +1 -10
  727. package/dist/src/typeGuards/lits.d.ts +5 -2
  728. package/dist/src/typeGuards/litsFunction.d.ts +3 -3
  729. package/dist/src/typeGuards/number.d.ts +1 -1
  730. package/dist/src/typeGuards/string.d.ts +1 -1
  731. package/dist/src/untokenizer/index.d.ts +1 -1
  732. package/dist/src/utils/arity.d.ts +10 -0
  733. package/dist/src/utils/debug/debugTools.d.ts +0 -2
  734. package/dist/src/utils/debug/getCodeMarker.d.ts +2 -0
  735. package/dist/src/utils/debug/getSourceCodeInfo.d.ts +2 -2
  736. package/dist/src/utils/docString/generateDocString.d.ts +2 -0
  737. package/dist/src/utils/getAssertionError.d.ts +1 -1
  738. package/dist/src/utils/index.d.ts +9 -6
  739. package/dist/testFramework.esm.js +1 -8913
  740. package/dist/testFramework.esm.js.map +1 -1
  741. package/dist/testFramework.js +1 -8916
  742. package/dist/testFramework.js.map +1 -1
  743. package/package.json +88 -8
  744. package/dist/cli/common/clojureDocs.d.ts +0 -1
  745. package/dist/cli/reference/categories/array.d.ts +0 -3
  746. package/dist/cli/reference/categories/assert.d.ts +0 -3
  747. package/dist/cli/reference/categories/bitwise.d.ts +0 -3
  748. package/dist/cli/reference/categories/collection.d.ts +0 -3
  749. package/dist/cli/reference/categories/functional.d.ts +0 -3
  750. package/dist/cli/reference/categories/math.d.ts +0 -3
  751. package/dist/cli/reference/categories/misc.d.ts +0 -3
  752. package/dist/cli/reference/categories/object.d.ts +0 -3
  753. package/dist/cli/reference/categories/predicate.d.ts +0 -3
  754. package/dist/cli/reference/categories/regularExpression.d.ts +0 -3
  755. package/dist/cli/reference/categories/sequence.d.ts +0 -3
  756. package/dist/cli/reference/categories/specialExpressions.d.ts +0 -3
  757. package/dist/cli/reference/categories/string.d.ts +0 -3
  758. package/dist/cli/src/analyze/calculateOutcomes/calculateAndOutcomes.d.ts +0 -3
  759. package/dist/cli/src/analyze/calculateOutcomes/calculateCommentOutcomes.d.ts +0 -3
  760. package/dist/cli/src/analyze/calculateOutcomes/calculateCondOutcomes.d.ts +0 -3
  761. package/dist/cli/src/analyze/calculateOutcomes/calculateDeclaredOutcomes.d.ts +0 -3
  762. package/dist/cli/src/analyze/calculateOutcomes/calculateDefOutcomes.d.ts +0 -3
  763. package/dist/cli/src/analyze/calculateOutcomes/calculateDefsOutcomes.d.ts +0 -3
  764. package/dist/cli/src/analyze/calculateOutcomes/calculateDoOutcomes.d.ts +0 -3
  765. package/dist/cli/src/analyze/calculateOutcomes/calculateFunctionOutcomes.d.ts +0 -5
  766. package/dist/cli/src/analyze/calculateOutcomes/calculateIfLetOutcomes.d.ts +0 -3
  767. package/dist/cli/src/analyze/calculateOutcomes/calculateIfNotOutcomes.d.ts +0 -3
  768. package/dist/cli/src/analyze/calculateOutcomes/calculateIfOutcomes.d.ts +0 -3
  769. package/dist/cli/src/analyze/calculateOutcomes/calculateLetOutcomes.d.ts +0 -3
  770. package/dist/cli/src/analyze/calculateOutcomes/calculateLoopOutcomes.d.ts +0 -3
  771. package/dist/cli/src/analyze/calculateOutcomes/calculateLoopsOutcomes.d.ts +0 -4
  772. package/dist/cli/src/analyze/calculateOutcomes/calculateOrOutcomes.d.ts +0 -3
  773. package/dist/cli/src/analyze/calculateOutcomes/calculateQqOutcomes.d.ts +0 -3
  774. package/dist/cli/src/analyze/calculateOutcomes/calculateRecurOutcomes.d.ts +0 -3
  775. package/dist/cli/src/analyze/calculateOutcomes/calculateThrowOutcomes.d.ts +0 -3
  776. package/dist/cli/src/analyze/calculateOutcomes/calculateTimeOutcomes.d.ts +0 -3
  777. package/dist/cli/src/analyze/calculateOutcomes/calculateTryOutcomes.d.ts +0 -3
  778. package/dist/cli/src/analyze/calculateOutcomes/calculateWhenFirstOutcomes.d.ts +0 -3
  779. package/dist/cli/src/analyze/calculateOutcomes/calculateWhenLetOutcomes.d.ts +0 -3
  780. package/dist/cli/src/analyze/calculateOutcomes/calculateWhenNotOutcomes.d.ts +0 -3
  781. package/dist/cli/src/analyze/calculateOutcomes/calculateWhenOutcomes.d.ts +0 -3
  782. package/dist/cli/src/analyze/calculateOutcomes/index.d.ts +0 -18
  783. package/dist/cli/src/analyze/calculateOutcomes/specialExpressionCalculators.d.ts +0 -55
  784. package/dist/cli/src/analyze/findUnresolvedIdentifiers.d.ts +0 -2
  785. package/dist/cli/src/analyze/index.d.ts +0 -17
  786. package/dist/cli/src/analyze/utils.d.ts +0 -4
  787. package/dist/cli/src/builtin/normalExpressions/categories/assert.d.ts +0 -2
  788. package/dist/cli/src/builtin/normalExpressions/categories/sequence.d.ts +0 -4
  789. package/dist/cli/src/builtin/specialExpressions/comment.d.ts +0 -5
  790. package/dist/cli/src/builtin/specialExpressions/declared.d.ts +0 -5
  791. package/dist/cli/src/builtin/specialExpressions/defs.d.ts +0 -5
  792. package/dist/cli/src/builtin/specialExpressions/do.d.ts +0 -6
  793. package/dist/cli/src/builtin/specialExpressions/if-let.d.ts +0 -10
  794. package/dist/cli/src/builtin/specialExpressions/if-not.d.ts +0 -6
  795. package/dist/cli/src/builtin/specialExpressions/time.d.ts +0 -6
  796. package/dist/cli/src/builtin/specialExpressions/when-first.d.ts +0 -7
  797. package/dist/cli/src/builtin/specialExpressions/when-let.d.ts +0 -7
  798. package/dist/cli/src/builtin/specialExpressions/when-not.d.ts +0 -6
  799. package/dist/cli/src/builtin/specialExpressions/when.d.ts +0 -6
  800. package/dist/cli/src/identifier.d.ts +0 -8
  801. package/dist/cli/src/parser/index.d.ts +0 -3
  802. package/dist/cli/src/parser/interface.d.ts +0 -155
  803. package/dist/cli/src/parser/parsers.d.ts +0 -4
  804. package/dist/cli/src/removeCommentNodes/index.d.ts +0 -11
  805. package/dist/cli/src/removeCommentNodes/removeCommentNodesFromSpecialExpression.d.ts +0 -3
  806. package/dist/cli/src/reservedNames.d.ts +0 -7
  807. package/dist/cli/src/tokenizer/index.d.ts +0 -9
  808. package/dist/cli/src/tokenizer/interface.d.ts +0 -35
  809. package/dist/cli/src/tokenizer/sugar/applyCollectionAccessor.d.ts +0 -2
  810. package/dist/cli/src/tokenizer/sugar/index.d.ts +0 -3
  811. package/dist/cli/src/typeGuards/token.d.ts +0 -13
  812. package/dist/cli/src/unparser/UnparseOptions.d.ts +0 -15
  813. package/dist/cli/src/unparser/unparse.d.ts +0 -5
  814. package/dist/cli/src/unparser/unparseArrayLiteral.d.ts +0 -3
  815. package/dist/cli/src/unparser/unparseBindings.d.ts +0 -3
  816. package/dist/cli/src/unparser/unparseNormalExpression.d.ts +0 -3
  817. package/dist/cli/src/unparser/unparseObjectLiteral.d.ts +0 -3
  818. package/dist/cli/src/unparser/unparseParams.d.ts +0 -17
  819. package/dist/cli/src/unparser/unparseSpecialExpression/index.d.ts +0 -3
  820. package/dist/cli/src/unparser/unparseSpecialExpression/unparseCond.d.ts +0 -3
  821. package/dist/cli/src/unparser/unparseSpecialExpression/unparseDo.d.ts +0 -3
  822. package/dist/cli/src/unparser/unparseSpecialExpression/unparseIfLet.d.ts +0 -3
  823. package/dist/cli/src/unparser/unparseSpecialExpression/unparseIfOrWhenLike.d.ts +0 -6
  824. package/dist/cli/src/unparser/unparseSpecialExpression/unparseLet.d.ts +0 -3
  825. package/dist/cli/src/unparser/utils.d.ts +0 -5
  826. package/dist/common/clojureDocs.d.ts +0 -1
  827. package/dist/reference/categories/array.d.ts +0 -3
  828. package/dist/reference/categories/assert.d.ts +0 -3
  829. package/dist/reference/categories/bitwise.d.ts +0 -3
  830. package/dist/reference/categories/collection.d.ts +0 -3
  831. package/dist/reference/categories/functional.d.ts +0 -3
  832. package/dist/reference/categories/math.d.ts +0 -3
  833. package/dist/reference/categories/misc.d.ts +0 -3
  834. package/dist/reference/categories/object.d.ts +0 -3
  835. package/dist/reference/categories/predicate.d.ts +0 -3
  836. package/dist/reference/categories/regularExpression.d.ts +0 -3
  837. package/dist/reference/categories/sequence.d.ts +0 -3
  838. package/dist/reference/categories/specialExpressions.d.ts +0 -3
  839. package/dist/reference/categories/string.d.ts +0 -3
  840. package/dist/src/analyze/calculateOutcomes/calculateAndOutcomes.d.ts +0 -3
  841. package/dist/src/analyze/calculateOutcomes/calculateCommentOutcomes.d.ts +0 -3
  842. package/dist/src/analyze/calculateOutcomes/calculateCondOutcomes.d.ts +0 -3
  843. package/dist/src/analyze/calculateOutcomes/calculateDeclaredOutcomes.d.ts +0 -3
  844. package/dist/src/analyze/calculateOutcomes/calculateDefOutcomes.d.ts +0 -3
  845. package/dist/src/analyze/calculateOutcomes/calculateDefsOutcomes.d.ts +0 -3
  846. package/dist/src/analyze/calculateOutcomes/calculateDoOutcomes.d.ts +0 -3
  847. package/dist/src/analyze/calculateOutcomes/calculateFunctionOutcomes.d.ts +0 -5
  848. package/dist/src/analyze/calculateOutcomes/calculateIfLetOutcomes.d.ts +0 -3
  849. package/dist/src/analyze/calculateOutcomes/calculateIfNotOutcomes.d.ts +0 -3
  850. package/dist/src/analyze/calculateOutcomes/calculateIfOutcomes.d.ts +0 -3
  851. package/dist/src/analyze/calculateOutcomes/calculateLetOutcomes.d.ts +0 -3
  852. package/dist/src/analyze/calculateOutcomes/calculateLoopOutcomes.d.ts +0 -3
  853. package/dist/src/analyze/calculateOutcomes/calculateLoopsOutcomes.d.ts +0 -4
  854. package/dist/src/analyze/calculateOutcomes/calculateOrOutcomes.d.ts +0 -3
  855. package/dist/src/analyze/calculateOutcomes/calculateQqOutcomes.d.ts +0 -3
  856. package/dist/src/analyze/calculateOutcomes/calculateRecurOutcomes.d.ts +0 -3
  857. package/dist/src/analyze/calculateOutcomes/calculateThrowOutcomes.d.ts +0 -3
  858. package/dist/src/analyze/calculateOutcomes/calculateTimeOutcomes.d.ts +0 -3
  859. package/dist/src/analyze/calculateOutcomes/calculateTryOutcomes.d.ts +0 -3
  860. package/dist/src/analyze/calculateOutcomes/calculateWhenFirstOutcomes.d.ts +0 -3
  861. package/dist/src/analyze/calculateOutcomes/calculateWhenLetOutcomes.d.ts +0 -3
  862. package/dist/src/analyze/calculateOutcomes/calculateWhenNotOutcomes.d.ts +0 -3
  863. package/dist/src/analyze/calculateOutcomes/calculateWhenOutcomes.d.ts +0 -3
  864. package/dist/src/analyze/calculateOutcomes/index.d.ts +0 -18
  865. package/dist/src/analyze/calculateOutcomes/specialExpressionCalculators.d.ts +0 -55
  866. package/dist/src/analyze/findUnresolvedIdentifiers.d.ts +0 -2
  867. package/dist/src/analyze/index.d.ts +0 -17
  868. package/dist/src/analyze/utils.d.ts +0 -4
  869. package/dist/src/builtin/normalExpressions/categories/assert.d.ts +0 -2
  870. package/dist/src/builtin/normalExpressions/categories/sequence.d.ts +0 -4
  871. package/dist/src/builtin/specialExpressions/comment.d.ts +0 -5
  872. package/dist/src/builtin/specialExpressions/declared.d.ts +0 -5
  873. package/dist/src/builtin/specialExpressions/defs.d.ts +0 -5
  874. package/dist/src/builtin/specialExpressions/do.d.ts +0 -6
  875. package/dist/src/builtin/specialExpressions/if-let.d.ts +0 -10
  876. package/dist/src/builtin/specialExpressions/if-not.d.ts +0 -6
  877. package/dist/src/builtin/specialExpressions/time.d.ts +0 -6
  878. package/dist/src/builtin/specialExpressions/when-first.d.ts +0 -7
  879. package/dist/src/builtin/specialExpressions/when-let.d.ts +0 -7
  880. package/dist/src/builtin/specialExpressions/when-not.d.ts +0 -6
  881. package/dist/src/builtin/specialExpressions/when.d.ts +0 -6
  882. package/dist/src/identifier.d.ts +0 -8
  883. package/dist/src/parser/index.d.ts +0 -3
  884. package/dist/src/parser/interface.d.ts +0 -155
  885. package/dist/src/parser/parsers.d.ts +0 -4
  886. package/dist/src/removeCommentNodes/index.d.ts +0 -11
  887. package/dist/src/removeCommentNodes/removeCommentNodesFromSpecialExpression.d.ts +0 -3
  888. package/dist/src/reservedNames.d.ts +0 -7
  889. package/dist/src/tokenizer/index.d.ts +0 -9
  890. package/dist/src/tokenizer/interface.d.ts +0 -35
  891. package/dist/src/tokenizer/sugar/applyCollectionAccessor.d.ts +0 -2
  892. package/dist/src/tokenizer/sugar/index.d.ts +0 -3
  893. package/dist/src/typeGuards/token.d.ts +0 -13
  894. package/dist/src/unparser/UnparseOptions.d.ts +0 -15
  895. package/dist/src/unparser/__tests__/testFormatter.d.ts +0 -1
  896. package/dist/src/unparser/unparse.d.ts +0 -5
  897. package/dist/src/unparser/unparseArrayLiteral.d.ts +0 -3
  898. package/dist/src/unparser/unparseBindings.d.ts +0 -3
  899. package/dist/src/unparser/unparseNormalExpression.d.ts +0 -3
  900. package/dist/src/unparser/unparseObjectLiteral.d.ts +0 -3
  901. package/dist/src/unparser/unparseParams.d.ts +0 -17
  902. package/dist/src/unparser/unparseSpecialExpression/index.d.ts +0 -3
  903. package/dist/src/unparser/unparseSpecialExpression/unparseCond.d.ts +0 -3
  904. package/dist/src/unparser/unparseSpecialExpression/unparseDo.d.ts +0 -3
  905. package/dist/src/unparser/unparseSpecialExpression/unparseIfLet.d.ts +0 -3
  906. package/dist/src/unparser/unparseSpecialExpression/unparseIfOrWhenLike.d.ts +0 -6
  907. package/dist/src/unparser/unparseSpecialExpression/unparseLet.d.ts +0 -3
  908. package/dist/src/unparser/utils.d.ts +0 -5
@@ -1,19 +1,34 @@
1
+ export { categories, categoryRecord, coreCategories, isDataType, moduleCategories } from '../src/builtin/interface';
2
+ export type { Category, DataType } from '../src/builtin/interface';
1
3
  export declare const api: {
2
- readonly collection: readonly ["count", "get", "get-in", "contains?", "has?", "has-some?", "has-every?", "assoc", "assoc-in", "concat", "not-empty", "every?", "not-every?", "any?", "not-any?", "update", "update-in"];
3
- readonly array: readonly ["array", "range", "repeat", "flatten", "mapcat"];
4
- readonly sequence: readonly ["nth", "push", "pop", "unshift", "shift", "slice", "reductions", "reduce", "reduce-right", "map", "filter", "position", "index-of", "some", "reverse", "first", "second", "last", "rest", "nthrest", "next", "nthnext", "cons", "take", "take-last", "take-while", "drop", "drop-last", "drop-while", "sort", "sort-by", "random-sample!", "rand-nth!", "shuffle!", "distinct", "remove", "remove-at", "split-at", "split-with", "frequencies", "group-by", "partition", "partition-all", "partition-by"];
5
- readonly math: readonly ["+", "-", "*", "/", "mod", "rem", "quot", "inc", "dec", "sqrt", "cbrt", "pow", "exp", "round", "trunc", "floor", "ceil", "min", "max", "abs", "sign", "positive-infinity", "negative-infinity", "max-safe-integer", "min-safe-integer", "max-value", "min-value", "epsilon", "nan", "e", "pi", "log", "log2", "log10", "rand!", "rand-int!", "sin", "cos", "tan", "asin", "acos", "atan", "sinh", "cosh", "tanh", "asinh", "acosh", "atanh"];
6
- readonly functional: readonly ["apply", "identity", "partial", "comp", "constantly", "juxt", "complement", "every-pred", "some-pred", "fnil"];
7
- readonly misc: readonly ["not=", "=", "<", ">", "<=", ">=", "not", "write!", "inst-ms!", "iso-date-time->inst-ms", "inst-ms->iso-date-time", "boolean", "compare", "lits-version!", "uuid!", "equal?", "json-parse", "json-stringify"];
8
- readonly object: readonly ["dissoc", "object", "keys", "vals", "entries", "find", "merge", "merge-with", "zipmap", "select-keys"];
9
- readonly predicate: readonly ["boolean?", "nil?", "number?", "string?", "function?", "integer?", "array?", "object?", "coll?", "seq?", "regexp?", "zero?", "pos?", "neg?", "even?", "odd?", "finite?", "nan?", "negative-infinity?", "positive-infinity?", "false?", "true?", "empty?", "not-empty?"];
10
- readonly regularExpression: readonly ["regexp", "match", "replace"];
11
- readonly specialExpressions: readonly ["and", "or", "def", "defs", "let", "if-let", "when-let", "when-first", "fn", "defn", "defns", "try", "throw", "if", "if-not", "cond", "when", "when-not", "comment", "do", "recur", "loop", "time!", "doseq", "for", "declared?", "??"];
12
- readonly string: readonly ["subs", "string-repeat", "str", "number", "number-to-string", "lower-case", "upper-case", "trim", "trim-left", "trim-right", "pad-left", "pad-right", "split", "template", "to-char-code", "from-char-code", "encode-base64", "decode-base64", "encode-uri-component", "decode-uri-component", "join"];
13
- readonly bitwise: readonly ["bit-shift-left", "bit-shift-right", "bit-not", "bit-and", "bit-and-not", "bit-or", "bit-xor", "bit-flip", "bit-clear", "bit-set", "bit-test"];
14
- readonly assert: readonly ["assert", "assert=", "assert-not=", "assert-equal", "assert-not-equal", "assert>", "assert<", "assert>=", "assert<=", "assert-true", "assert-false", "assert-truthy", "assert-falsy", "assert-nil", "assert-throws", "assert-throws-error", "assert-not-throws"];
15
- readonly shorthand: ["_short_regexp", "_short_fn", "_short_string", "_short_dot", "_short_hash"];
16
- readonly datatype: ["_type_number", "_type_string", "_type_object", "_type_array", "_type_boolean", "_type_function", "_type_integer", "_type_any", "_type_nil", "_type_collection", "_type_sequence", "_type_regexp", "_type_never"];
4
+ readonly collection: readonly ["filter", "map", "reduce", "count", "get", "contains?", "assoc", "++"];
5
+ readonly collectionUtils: readonly ["collection.filteri", "collection.mapi", "collection.reducei", "collection.reduce-right", "collection.reducei-right", "collection.reductions", "collection.reductionsi", "collection.get-in", "collection.assoc-in", "collection.update", "collection.update-in", "collection.not-empty", "collection.every?", "collection.not-every?", "collection.any?", "collection.not-any?"];
6
+ readonly array: readonly ["range", "repeat", "flatten", "mapcat", "moving-fn", "running-fn"];
7
+ readonly sequence: readonly ["nth", "push", "pop", "index-of", "some", "reverse", "first", "second", "last", "rest", "next", "sort", "slice"];
8
+ readonly sequenceUtils: readonly ["sequence.position", "sequence.last-index-of", "sequence.shift", "sequence.unshift", "sequence.splice", "sequence.sort-by", "sequence.take", "sequence.take-last", "sequence.take-while", "sequence.drop", "sequence.drop-last", "sequence.drop-while", "sequence.distinct", "sequence.remove", "sequence.remove-at", "sequence.split-at", "sequence.split-with", "sequence.frequencies", "sequence.group-by", "sequence.partition", "sequence.partition-all", "sequence.partition-by", "sequence.starts-with?", "sequence.ends-with?", "sequence.interleave", "sequence.interpose"];
9
+ readonly math: readonly ["+", "-", "*", "/", "mod", "%", "quot", "inc", "dec", "sqrt", "cbrt", "^", "round", "trunc", "floor", "ceil", "min", "max", "abs", "sign"];
10
+ readonly mathUtils: readonly ["math.ln", "math.log2", "math.log10", "math.sin", "math.cos", "math.tan", "math.asin", "math.acos", "math.atan", "math.sinh", "math.cosh", "math.tanh", "math.asinh", "math.acosh", "math.atanh", "math.to-rad", "math.to-deg"];
11
+ readonly functional: readonly ["|>", "apply", "identity", "comp", "constantly"];
12
+ readonly functionalUtils: readonly ["functional.juxt", "functional.complement", "functional.every-pred", "functional.some-pred", "functional.fnull"];
13
+ readonly meta: readonly ["doc", "arity"];
14
+ readonly misc: readonly ["", "==", "<", ">", "<=", ">=", "!", "write!", "iso-date->epoch", "epoch->iso-date", "boolean", "compare", "identical?", "import", "json-parse", "json-stringify"];
15
+ readonly object: readonly ["dissoc", "keys", "vals", "entries", "find", "merge", "merge-with", "zipmap", "select-keys"];
16
+ readonly predicate: readonly ["boolean?", "null?", "number?", "string?", "function?", "integer?", "array?", "object?", "collection?", "sequence?", "regexp?", "zero?", "pos?", "neg?", "even?", "odd?", "finite?", "negative-infinity?", "positive-infinity?", "false?", "true?", "empty?", "not-empty?", "vector?", "grid?", "matrix?"];
17
+ readonly regularExpression: readonly ["regexp", "match", "replace", "replace-all"];
18
+ readonly string: readonly ["str", "number", "lower-case", "upper-case", "trim", "split", "join", "blank?"];
19
+ readonly stringUtils: readonly ["string.string-repeat", "string.from-char-code", "string.to-char-code", "string.trim-left", "string.trim-right", "string.pad-left", "string.pad-right", "string.split-lines", "string.template", "string.encode-base64", "string.decode-base64", "string.encode-uri-component", "string.decode-uri-component", "string.capitalize"];
20
+ readonly bitwise: readonly ["<<", ">>", ">>>", "&", "|", "xor"];
21
+ readonly bitwiseUtils: readonly ["bitwise.bit-not", "bitwise.bit-and-not", "bitwise.bit-flip", "bitwise.bit-clear", "bitwise.bit-set", "bitwise.bit-test"];
22
+ readonly assert: readonly ["assert.assert", "assert.assert=", "assert.assert!=", "assert.assert-gt", "assert.assert-lt", "assert.assert-gte", "assert.assert-lte", "assert.assert-true", "assert.assert-false", "assert.assert-truthy", "assert.assert-falsy", "assert.assert-null", "assert.assert-throws", "assert.assert-throws-error", "assert.assert-not-throws", "assert.assert-array", "assert.assert-boolean", "assert.assert-collection", "assert.assert-function", "assert.assert-grid", "assert.assert-integer", "assert.assert-matrix", "assert.assert-number", "assert.assert-object", "assert.assert-regexp", "assert.assert-sequence", "assert.assert-string", "assert.assert-vector"];
23
+ readonly grid: readonly ["grid.every?", "grid.some?", "grid.every-row?", "grid.some-row?", "grid.every-col?", "grid.some-col?", "grid.row", "grid.col", "grid.shape", "grid.fill", "grid.generate", "grid.reshape", "grid.transpose", "grid.flip-h", "grid.flip-v", "grid.rotate", "grid.reverse-rows", "grid.reverse-cols", "grid.slice", "grid.slice-rows", "grid.slice-cols", "grid.splice-rows", "grid.splice-cols", "grid.concat-rows", "grid.concat-cols", "grid.map", "grid.mapi", "grid.reduce", "grid.reducei", "grid.push-rows", "grid.unshift-rows", "grid.pop-row", "grid.shift-row", "grid.push-cols", "grid.unshift-cols", "grid.pop-col", "grid.shift-col", "grid.from-array"];
24
+ readonly matrix: readonly ["matrix.mul", "matrix.det", "matrix.inv", "matrix.adj", "matrix.cofactor", "matrix.minor", "matrix.trace", "matrix.symmetric?", "matrix.triangular?", "matrix.upper-triangular?", "matrix.lower-triangular?", "matrix.diagonal?", "matrix.square?", "matrix.orthogonal?", "matrix.identity?", "matrix.invertible?", "matrix.hilbert", "matrix.vandermonde", "matrix.band", "matrix.banded?", "matrix.rank", "matrix.frobenius-norm", "matrix.one-norm", "matrix.inf-norm", "matrix.max-norm"];
25
+ readonly vector: readonly ["sum", "mean", "median", "prod"];
26
+ readonly vectorUtils: readonly ["vector.monotonic?", "vector.strictly-monotonic?", "vector.increasing?", "vector.decreasing?", "vector.strictly-increasing?", "vector.strictly-decreasing?", "vector.median", "vector.mode", "vector.min-index", "vector.max-index", "vector.sort-indices", "vector.count-values", "vector.linspace", "vector.ones", "vector.zeros", "vector.fill", "vector.generate", "vector.cumsum", "vector.cumprod", "vector.quartiles", "vector.percentile", "vector.quantile", "vector.histogram", "vector.ecdf", "vector.outliers?", "vector.outliers", "vector.bincount", "vector.winsorize", "vector.mse", "vector.mae", "vector.rmse", "vector.smape", "vector.mean", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.median", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.variance", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.sample-variance", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.sum", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.prod", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.stdev", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.sample-stdev", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.iqr", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.span", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.geometric-mean", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.harmonic-mean", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.skewness", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.sample-skewness", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.kurtosis", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.sample-kurtosis", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.excess-kurtosis", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.sample-excess-kurtosis", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.rms", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.mad", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.medad", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.gini-coefficient", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.entropy", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.skewness", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`];
27
+ readonly linAlg: readonly ["linear-algebra.reflect", "linear-algebra.refract", "linear-algebra.lerp", "linear-algebra.rotate2d", "linear-algebra.rotate3d", "linear-algebra.dot", "linear-algebra.cross", "linear-algebra.normalize-minmax", "linear-algebra.normalize-zscore", "linear-algebra.normalize-robust", "linear-algebra.normalize-l1", "linear-algebra.normalize-l2", "linear-algebra.normalize-log", "linear-algebra.angle", "linear-algebra.projection", "linear-algebra.orthogonal?", "linear-algebra.parallel?", "linear-algebra.collinear?", "linear-algebra.cosine-similarity", "linear-algebra.euclidean-distance", "linear-algebra.euclidean-norm", "linear-algebra.manhattan-distance", "linear-algebra.manhattan-norm", "linear-algebra.hamming-distance", "linear-algebra.hamming-norm", "linear-algebra.chebyshev-distance", "linear-algebra.chebyshev-norm", "linear-algebra.minkowski-distance", "linear-algebra.minkowski-norm", "linear-algebra.cov", "linear-algebra.corr", "linear-algebra.spearman-corr", "linear-algebra.pearson-corr", "linear-algebra.kendall-tau", "linear-algebra.autocorrelation", "linear-algebra.cross-correlation", "linear-algebra.rref", "linear-algebra.solve", "linear-algebra.to-polar", "linear-algebra.from-polar"];
28
+ readonly numberTheory: readonly ["number-theory.abundant-seq", "number-theory.abundant-nth", "number-theory.abundant-take-while", "number-theory.abundant?", "number-theory.arithmetic-seq", "number-theory.arithmetic-nth", "number-theory.arithmetic-take-while", "number-theory.arithmetic?", "number-theory.bell-seq", "number-theory.bell-nth", "number-theory.bell-take-while", "number-theory.bell?", "number-theory.catalan-seq", "number-theory.catalan-nth", "number-theory.catalan-take-while", "number-theory.catalan?", "number-theory.composite-seq", "number-theory.composite-nth", "number-theory.composite-take-while", "number-theory.composite?", "number-theory.deficient-seq", "number-theory.deficient-nth", "number-theory.deficient-take-while", "number-theory.deficient?", "number-theory.factorial-seq", "number-theory.factorial-nth", "number-theory.factorial-take-while", "number-theory.factorial?", "number-theory.fibonacci-seq", "number-theory.fibonacci-nth", "number-theory.fibonacci-take-while", "number-theory.fibonacci?", "number-theory.geometric-seq", "number-theory.geometric-nth", "number-theory.geometric-take-while", "number-theory.geometric?", "number-theory.golomb-seq", "number-theory.golomb-nth", "number-theory.golomb-take-while", "number-theory.golomb?", "number-theory.happy-seq", "number-theory.happy-nth", "number-theory.happy-take-while", "number-theory.happy?", "number-theory.look-and-say-seq", "number-theory.look-and-say-nth", "number-theory.look-and-say-take-while", "number-theory.look-and-say?", "number-theory.lucas-seq", "number-theory.lucas-nth", "number-theory.lucas-take-while", "number-theory.lucas?", "number-theory.lucky-seq", "number-theory.lucky-nth", "number-theory.lucky-take-while", "number-theory.lucky?", "number-theory.mersenne-seq", "number-theory.mersenne-nth", "number-theory.mersenne-take-while", "number-theory.mersenne?", "number-theory.padovan-seq", "number-theory.padovan-nth", "number-theory.padovan-take-while", "number-theory.padovan?", "number-theory.partition-seq", "number-theory.partition-nth", "number-theory.partition-take-while", "number-theory.partition?", "number-theory.pell-seq", "number-theory.pell-nth", "number-theory.pell-take-while", "number-theory.pell?", "number-theory.perfect-seq", "number-theory.perfect-nth", "number-theory.perfect-take-while", "number-theory.perfect?", "number-theory.perfect-cube-seq", "number-theory.perfect-cube-nth", "number-theory.perfect-cube-take-while", "number-theory.perfect-cube?", "number-theory.perfect-power-seq", "number-theory.perfect-power-nth", "number-theory.perfect-power-take-while", "number-theory.perfect-power?", "number-theory.perfect-square-seq", "number-theory.perfect-square-nth", "number-theory.perfect-square-take-while", "number-theory.perfect-square?", "number-theory.polygonal-seq", "number-theory.polygonal-nth", "number-theory.polygonal-take-while", "number-theory.polygonal?", "number-theory.prime-seq", "number-theory.prime-nth", "number-theory.prime-take-while", "number-theory.prime?", "number-theory.recaman-seq", "number-theory.recaman-nth", "number-theory.recaman-take-while", "number-theory.recaman?", "number-theory.sylvester-seq", "number-theory.sylvester-nth", "number-theory.sylvester-take-while", "number-theory.sylvester?", "number-theory.thue-morse-seq", "number-theory.thue-morse-nth", "number-theory.thue-morse-take-while", "number-theory.thue-morse?", "number-theory.tribonacci-seq", "number-theory.tribonacci-nth", "number-theory.tribonacci-take-while", "number-theory.tribonacci?", "number-theory.collatz-seq", "number-theory.juggler-seq", "number-theory.bernoulli-seq", "number-theory.bernoulli-take-while", "number-theory.bernoulli-nth", "number-theory.combinations", "number-theory.count-combinations", "number-theory.derangements", "number-theory.count-derangements", "number-theory.divisors", "number-theory.count-divisors", "number-theory.proper-divisors", "number-theory.count-proper-divisors", "number-theory.prime-factors", "number-theory.count-prime-factors", "number-theory.distinct-prime-factors", "number-theory.count-distinct-prime-factors", "number-theory.factorial", "number-theory.partitions", "number-theory.count-partitions", "number-theory.permutations", "number-theory.count-permutations", "number-theory.power-set", "number-theory.count-power-set", "number-theory.coprime?", "number-theory.divisible-by?", "number-theory.gcd", "number-theory.lcm", "number-theory.multinomial", "number-theory.amicable?", "number-theory.euler-totient", "number-theory.mobius", "number-theory.mertens", "number-theory.sigma", "number-theory.carmichael-lambda", "number-theory.cartesian-product", "number-theory.perfect-power", "number-theory.mod-exp", "number-theory.mod-inv", "number-theory.extended-gcd", "number-theory.chinese-remainder", "number-theory.stirling-first", "number-theory.stirling-second"];
29
+ readonly random: readonly ["random.random!", "random.random-int!", "random.random-int-inclusive!", "random.random-float!", "random.random-boolean!", "random.random-item!", "random.random-sample!", "random.random-sample-unique!", "random.shuffle!", "random.random-normal!", "random.random-exponential!", "random.random-binomial!", "random.random-poisson!", "random.random-gamma!", "random.random-pareto!", "random.uuid!", "random.random-char!", "random.random-string!", "random.random-id!", "random.random-color!"];
30
+ readonly shorthand: ["-short-regexp", "-short-fn"];
31
+ readonly datatype: ["-type-number", "-type-string", "-type-object", "-type-array", "-type-vector", "-type-matrix", "-type-grid", "-type-boolean", "-type-function", "-type-integer", "-type-any", "-type-null", "-type-collection", "-type-sequence", "-type-regexp", "-type-never"];
17
32
  };
18
33
  export type CollectionApiName = typeof api.collection[number];
19
34
  export type ArrayApiName = typeof api.array[number];
@@ -21,39 +36,36 @@ export type SequenceApiName = typeof api.sequence[number];
21
36
  export type MathApiName = typeof api.math[number];
22
37
  export type FunctionalApiName = typeof api.functional[number];
23
38
  export type MiscApiName = typeof api.misc[number];
39
+ export type MetaApiName = typeof api.meta[number];
24
40
  export type ObjectApiName = typeof api.object[number];
25
41
  export type PredicateApiName = typeof api.predicate[number];
26
42
  export type RegularExpressionApiName = typeof api.regularExpression[number];
27
- export type SpecialExpressionsApiName = typeof api.specialExpressions[number];
43
+ export type SpecialExpressionsApiName = string;
28
44
  export type StringApiName = typeof api.string[number];
45
+ export type StringUtilsApiName = typeof api.stringUtils[number];
46
+ export type CollectionUtilsApiName = typeof api.collectionUtils[number];
47
+ export type SequenceUtilsApiName = typeof api.sequenceUtils[number];
29
48
  export type BitwiseApiName = typeof api.bitwise[number];
49
+ export type BitwiseUtilsApiName = typeof api.bitwiseUtils[number];
30
50
  export type AssertApiName = typeof api.assert[number];
31
- export type FunctionName = CollectionApiName | ArrayApiName | SequenceApiName | MathApiName | FunctionalApiName | MiscApiName | ObjectApiName | PredicateApiName | RegularExpressionApiName | SpecialExpressionsApiName | StringApiName | BitwiseApiName | AssertApiName;
51
+ export type GridApiName = typeof api.grid[number];
52
+ export type MatrixApiName = typeof api.matrix[number];
53
+ export type NumberTheoryApiName = typeof api.numberTheory[number];
54
+ export type VectorApiName = typeof api.vector[number];
55
+ export type VectorUtilsApiName = typeof api.vectorUtils[number];
56
+ export type LinAlgApiName = typeof api.linAlg[number];
57
+ export type RandomApiName = typeof api.random[number];
58
+ export type MathUtilsApiName = typeof api.mathUtils[number];
59
+ export type FunctionalUtilsApiName = typeof api.functionalUtils[number];
60
+ export type CoreNormalExpressionName = CollectionApiName | ArrayApiName | SequenceApiName | MathApiName | FunctionalApiName | MetaApiName | MiscApiName | ObjectApiName | PredicateApiName | RegularExpressionApiName | StringApiName | BitwiseApiName | VectorApiName;
61
+ export type ModuleExpressionName = MatrixApiName | VectorUtilsApiName | LinAlgApiName | GridApiName | NumberTheoryApiName | RandomApiName | MathUtilsApiName | FunctionalUtilsApiName | AssertApiName | StringUtilsApiName | CollectionUtilsApiName | SequenceUtilsApiName | BitwiseUtilsApiName;
62
+ export type NormalExpressionName = CoreNormalExpressionName | ModuleExpressionName;
63
+ export type FunctionName = NormalExpressionName | SpecialExpressionsApiName;
32
64
  export type ShorthandName = typeof api.shorthand[number];
33
65
  export type DatatypeName = typeof api.datatype[number];
34
- declare const apiNames: readonly ["count", "get", "get-in", "contains?", "has?", "has-some?", "has-every?", "assoc", "assoc-in", "concat", "not-empty", "every?", "not-every?", "any?", "not-any?", "update", "update-in", "array", "range", "repeat", "flatten", "mapcat", "nth", "push", "pop", "unshift", "shift", "slice", "reductions", "reduce", "reduce-right", "map", "filter", "position", "index-of", "some", "reverse", "first", "second", "last", "rest", "nthrest", "next", "nthnext", "cons", "take", "take-last", "take-while", "drop", "drop-last", "drop-while", "sort", "sort-by", "random-sample!", "rand-nth!", "shuffle!", "distinct", "remove", "remove-at", "split-at", "split-with", "frequencies", "group-by", "partition", "partition-all", "partition-by", "+", "-", "*", "/", "mod", "rem", "quot", "inc", "dec", "sqrt", "cbrt", "pow", "exp", "round", "trunc", "floor", "ceil", "min", "max", "abs", "sign", "positive-infinity", "negative-infinity", "max-safe-integer", "min-safe-integer", "max-value", "min-value", "epsilon", "nan", "e", "pi", "log", "log2", "log10", "rand!", "rand-int!", "sin", "cos", "tan", "asin", "acos", "atan", "sinh", "cosh", "tanh", "asinh", "acosh", "atanh", "apply", "identity", "partial", "comp", "constantly", "juxt", "complement", "every-pred", "some-pred", "fnil", "not=", "=", "<", ">", "<=", ">=", "not", "write!", "inst-ms!", "iso-date-time->inst-ms", "inst-ms->iso-date-time", "boolean", "compare", "lits-version!", "uuid!", "equal?", "json-parse", "json-stringify", "dissoc", "object", "keys", "vals", "entries", "find", "merge", "merge-with", "zipmap", "select-keys", "boolean?", "nil?", "number?", "string?", "function?", "integer?", "array?", "object?", "coll?", "seq?", "regexp?", "zero?", "pos?", "neg?", "even?", "odd?", "finite?", "nan?", "negative-infinity?", "positive-infinity?", "false?", "true?", "empty?", "not-empty?", "regexp", "match", "replace", "and", "or", "def", "defs", "let", "if-let", "when-let", "when-first", "fn", "defn", "defns", "try", "throw", "if", "if-not", "cond", "when", "when-not", "comment", "do", "recur", "loop", "time!", "doseq", "for", "declared?", "??", "subs", "string-repeat", "str", "number", "number-to-string", "lower-case", "upper-case", "trim", "trim-left", "trim-right", "pad-left", "pad-right", "split", "template", "to-char-code", "from-char-code", "encode-base64", "decode-base64", "encode-uri-component", "decode-uri-component", "join", "bit-shift-left", "bit-shift-right", "bit-not", "bit-and", "bit-and-not", "bit-or", "bit-xor", "bit-flip", "bit-clear", "bit-set", "bit-test", "assert", "assert=", "assert-not=", "assert-equal", "assert-not-equal", "assert>", "assert<", "assert>=", "assert<=", "assert-true", "assert-false", "assert-truthy", "assert-falsy", "assert-nil", "assert-throws", "assert-throws-error", "assert-not-throws", "_short_regexp", "_short_fn", "_short_string", "_short_dot", "_short_hash", "_type_number", "_type_string", "_type_object", "_type_array", "_type_boolean", "_type_function", "_type_integer", "_type_any", "_type_nil", "_type_collection", "_type_sequence", "_type_regexp", "_type_never"];
66
+ declare const coreApiNames: readonly ["filter", "map", "reduce", "count", "get", "contains?", "assoc", "++", "range", "repeat", "flatten", "mapcat", "moving-fn", "running-fn", "nth", "push", "pop", "index-of", "some", "reverse", "first", "second", "last", "rest", "next", "sort", "slice", "+", "-", "*", "/", "mod", "%", "quot", "inc", "dec", "sqrt", "cbrt", "^", "round", "trunc", "floor", "ceil", "min", "max", "abs", "sign", "|>", "apply", "identity", "comp", "constantly", "doc", "arity", "", "==", "<", ">", "<=", ">=", "!", "write!", "iso-date->epoch", "epoch->iso-date", "boolean", "compare", "identical?", "import", "json-parse", "json-stringify", "dissoc", "keys", "vals", "entries", "find", "merge", "merge-with", "zipmap", "select-keys", "boolean?", "null?", "number?", "string?", "function?", "integer?", "array?", "object?", "collection?", "sequence?", "regexp?", "zero?", "pos?", "neg?", "even?", "odd?", "finite?", "negative-infinity?", "positive-infinity?", "false?", "true?", "empty?", "not-empty?", "vector?", "grid?", "matrix?", "regexp", "match", "replace", "replace-all", "str", "number", "lower-case", "upper-case", "trim", "split", "join", "blank?", "<<", ">>", ">>>", "&", "|", "xor", "sum", "mean", "median", "prod", "-short-regexp", "-short-fn", "-type-number", "-type-string", "-type-object", "-type-array", "-type-vector", "-type-matrix", "-type-grid", "-type-boolean", "-type-function", "-type-integer", "-type-any", "-type-null", "-type-collection", "-type-sequence", "-type-regexp", "-type-never"];
67
+ declare const apiNames: readonly ["filter", "map", "reduce", "count", "get", "contains?", "assoc", "++", "range", "repeat", "flatten", "mapcat", "moving-fn", "running-fn", "nth", "push", "pop", "index-of", "some", "reverse", "first", "second", "last", "rest", "next", "sort", "slice", "+", "-", "*", "/", "mod", "%", "quot", "inc", "dec", "sqrt", "cbrt", "^", "round", "trunc", "floor", "ceil", "min", "max", "abs", "sign", "|>", "apply", "identity", "comp", "constantly", "doc", "arity", "≠", "==", "<", ">", "<=", ">=", "!", "write!", "iso-date->epoch", "epoch->iso-date", "boolean", "compare", "identical?", "import", "json-parse", "json-stringify", "dissoc", "keys", "vals", "entries", "find", "merge", "merge-with", "zipmap", "select-keys", "boolean?", "null?", "number?", "string?", "function?", "integer?", "array?", "object?", "collection?", "sequence?", "regexp?", "zero?", "pos?", "neg?", "even?", "odd?", "finite?", "negative-infinity?", "positive-infinity?", "false?", "true?", "empty?", "not-empty?", "vector?", "grid?", "matrix?", "regexp", "match", "replace", "replace-all", "str", "number", "lower-case", "upper-case", "trim", "split", "join", "blank?", "<<", ">>", ">>>", "&", "|", "xor", "sum", "mean", "median", "prod", "matrix.mul", "matrix.det", "matrix.inv", "matrix.adj", "matrix.cofactor", "matrix.minor", "matrix.trace", "matrix.symmetric?", "matrix.triangular?", "matrix.upper-triangular?", "matrix.lower-triangular?", "matrix.diagonal?", "matrix.square?", "matrix.orthogonal?", "matrix.identity?", "matrix.invertible?", "matrix.hilbert", "matrix.vandermonde", "matrix.band", "matrix.banded?", "matrix.rank", "matrix.frobenius-norm", "matrix.one-norm", "matrix.inf-norm", "matrix.max-norm", "vector.monotonic?", "vector.strictly-monotonic?", "vector.increasing?", "vector.decreasing?", "vector.strictly-increasing?", "vector.strictly-decreasing?", "vector.median", "vector.mode", "vector.min-index", "vector.max-index", "vector.sort-indices", "vector.count-values", "vector.linspace", "vector.ones", "vector.zeros", "vector.fill", "vector.generate", "vector.cumsum", "vector.cumprod", "vector.quartiles", "vector.percentile", "vector.quantile", "vector.histogram", "vector.ecdf", "vector.outliers?", "vector.outliers", "vector.bincount", "vector.winsorize", "vector.mse", "vector.mae", "vector.rmse", "vector.smape", "vector.mean", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.median", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.variance", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.sample-variance", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.sum", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.prod", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.stdev", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.sample-stdev", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.iqr", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.span", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.geometric-mean", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.harmonic-mean", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.skewness", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.sample-skewness", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.kurtosis", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.sample-kurtosis", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.excess-kurtosis", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.sample-excess-kurtosis", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.rms", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.mad", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.medad", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.gini-coefficient", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.entropy", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "vector.skewness", `vector.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, "linear-algebra.reflect", "linear-algebra.refract", "linear-algebra.lerp", "linear-algebra.rotate2d", "linear-algebra.rotate3d", "linear-algebra.dot", "linear-algebra.cross", "linear-algebra.normalize-minmax", "linear-algebra.normalize-zscore", "linear-algebra.normalize-robust", "linear-algebra.normalize-l1", "linear-algebra.normalize-l2", "linear-algebra.normalize-log", "linear-algebra.angle", "linear-algebra.projection", "linear-algebra.orthogonal?", "linear-algebra.parallel?", "linear-algebra.collinear?", "linear-algebra.cosine-similarity", "linear-algebra.euclidean-distance", "linear-algebra.euclidean-norm", "linear-algebra.manhattan-distance", "linear-algebra.manhattan-norm", "linear-algebra.hamming-distance", "linear-algebra.hamming-norm", "linear-algebra.chebyshev-distance", "linear-algebra.chebyshev-norm", "linear-algebra.minkowski-distance", "linear-algebra.minkowski-norm", "linear-algebra.cov", "linear-algebra.corr", "linear-algebra.spearman-corr", "linear-algebra.pearson-corr", "linear-algebra.kendall-tau", "linear-algebra.autocorrelation", "linear-algebra.cross-correlation", "linear-algebra.rref", "linear-algebra.solve", "linear-algebra.to-polar", "linear-algebra.from-polar", "grid.every?", "grid.some?", "grid.every-row?", "grid.some-row?", "grid.every-col?", "grid.some-col?", "grid.row", "grid.col", "grid.shape", "grid.fill", "grid.generate", "grid.reshape", "grid.transpose", "grid.flip-h", "grid.flip-v", "grid.rotate", "grid.reverse-rows", "grid.reverse-cols", "grid.slice", "grid.slice-rows", "grid.slice-cols", "grid.splice-rows", "grid.splice-cols", "grid.concat-rows", "grid.concat-cols", "grid.map", "grid.mapi", "grid.reduce", "grid.reducei", "grid.push-rows", "grid.unshift-rows", "grid.pop-row", "grid.shift-row", "grid.push-cols", "grid.unshift-cols", "grid.pop-col", "grid.shift-col", "grid.from-array", "number-theory.abundant-seq", "number-theory.abundant-nth", "number-theory.abundant-take-while", "number-theory.abundant?", "number-theory.arithmetic-seq", "number-theory.arithmetic-nth", "number-theory.arithmetic-take-while", "number-theory.arithmetic?", "number-theory.bell-seq", "number-theory.bell-nth", "number-theory.bell-take-while", "number-theory.bell?", "number-theory.catalan-seq", "number-theory.catalan-nth", "number-theory.catalan-take-while", "number-theory.catalan?", "number-theory.composite-seq", "number-theory.composite-nth", "number-theory.composite-take-while", "number-theory.composite?", "number-theory.deficient-seq", "number-theory.deficient-nth", "number-theory.deficient-take-while", "number-theory.deficient?", "number-theory.factorial-seq", "number-theory.factorial-nth", "number-theory.factorial-take-while", "number-theory.factorial?", "number-theory.fibonacci-seq", "number-theory.fibonacci-nth", "number-theory.fibonacci-take-while", "number-theory.fibonacci?", "number-theory.geometric-seq", "number-theory.geometric-nth", "number-theory.geometric-take-while", "number-theory.geometric?", "number-theory.golomb-seq", "number-theory.golomb-nth", "number-theory.golomb-take-while", "number-theory.golomb?", "number-theory.happy-seq", "number-theory.happy-nth", "number-theory.happy-take-while", "number-theory.happy?", "number-theory.look-and-say-seq", "number-theory.look-and-say-nth", "number-theory.look-and-say-take-while", "number-theory.look-and-say?", "number-theory.lucas-seq", "number-theory.lucas-nth", "number-theory.lucas-take-while", "number-theory.lucas?", "number-theory.lucky-seq", "number-theory.lucky-nth", "number-theory.lucky-take-while", "number-theory.lucky?", "number-theory.mersenne-seq", "number-theory.mersenne-nth", "number-theory.mersenne-take-while", "number-theory.mersenne?", "number-theory.padovan-seq", "number-theory.padovan-nth", "number-theory.padovan-take-while", "number-theory.padovan?", "number-theory.partition-seq", "number-theory.partition-nth", "number-theory.partition-take-while", "number-theory.partition?", "number-theory.pell-seq", "number-theory.pell-nth", "number-theory.pell-take-while", "number-theory.pell?", "number-theory.perfect-seq", "number-theory.perfect-nth", "number-theory.perfect-take-while", "number-theory.perfect?", "number-theory.perfect-cube-seq", "number-theory.perfect-cube-nth", "number-theory.perfect-cube-take-while", "number-theory.perfect-cube?", "number-theory.perfect-power-seq", "number-theory.perfect-power-nth", "number-theory.perfect-power-take-while", "number-theory.perfect-power?", "number-theory.perfect-square-seq", "number-theory.perfect-square-nth", "number-theory.perfect-square-take-while", "number-theory.perfect-square?", "number-theory.polygonal-seq", "number-theory.polygonal-nth", "number-theory.polygonal-take-while", "number-theory.polygonal?", "number-theory.prime-seq", "number-theory.prime-nth", "number-theory.prime-take-while", "number-theory.prime?", "number-theory.recaman-seq", "number-theory.recaman-nth", "number-theory.recaman-take-while", "number-theory.recaman?", "number-theory.sylvester-seq", "number-theory.sylvester-nth", "number-theory.sylvester-take-while", "number-theory.sylvester?", "number-theory.thue-morse-seq", "number-theory.thue-morse-nth", "number-theory.thue-morse-take-while", "number-theory.thue-morse?", "number-theory.tribonacci-seq", "number-theory.tribonacci-nth", "number-theory.tribonacci-take-while", "number-theory.tribonacci?", "number-theory.collatz-seq", "number-theory.juggler-seq", "number-theory.bernoulli-seq", "number-theory.bernoulli-take-while", "number-theory.bernoulli-nth", "number-theory.combinations", "number-theory.count-combinations", "number-theory.derangements", "number-theory.count-derangements", "number-theory.divisors", "number-theory.count-divisors", "number-theory.proper-divisors", "number-theory.count-proper-divisors", "number-theory.prime-factors", "number-theory.count-prime-factors", "number-theory.distinct-prime-factors", "number-theory.count-distinct-prime-factors", "number-theory.factorial", "number-theory.partitions", "number-theory.count-partitions", "number-theory.permutations", "number-theory.count-permutations", "number-theory.power-set", "number-theory.count-power-set", "number-theory.coprime?", "number-theory.divisible-by?", "number-theory.gcd", "number-theory.lcm", "number-theory.multinomial", "number-theory.amicable?", "number-theory.euler-totient", "number-theory.mobius", "number-theory.mertens", "number-theory.sigma", "number-theory.carmichael-lambda", "number-theory.cartesian-product", "number-theory.perfect-power", "number-theory.mod-exp", "number-theory.mod-inv", "number-theory.extended-gcd", "number-theory.chinese-remainder", "number-theory.stirling-first", "number-theory.stirling-second", "random.random!", "random.random-int!", "random.random-int-inclusive!", "random.random-float!", "random.random-boolean!", "random.random-item!", "random.random-sample!", "random.random-sample-unique!", "random.shuffle!", "random.random-normal!", "random.random-exponential!", "random.random-binomial!", "random.random-poisson!", "random.random-gamma!", "random.random-pareto!", "random.uuid!", "random.random-char!", "random.random-string!", "random.random-id!", "random.random-color!", "math.ln", "math.log2", "math.log10", "math.sin", "math.cos", "math.tan", "math.asin", "math.acos", "math.atan", "math.sinh", "math.cosh", "math.tanh", "math.asinh", "math.acosh", "math.atanh", "math.to-rad", "math.to-deg", "functional.juxt", "functional.complement", "functional.every-pred", "functional.some-pred", "functional.fnull", "assert.assert", "assert.assert=", "assert.assert!=", "assert.assert-gt", "assert.assert-lt", "assert.assert-gte", "assert.assert-lte", "assert.assert-true", "assert.assert-false", "assert.assert-truthy", "assert.assert-falsy", "assert.assert-null", "assert.assert-throws", "assert.assert-throws-error", "assert.assert-not-throws", "assert.assert-array", "assert.assert-boolean", "assert.assert-collection", "assert.assert-function", "assert.assert-grid", "assert.assert-integer", "assert.assert-matrix", "assert.assert-number", "assert.assert-object", "assert.assert-regexp", "assert.assert-sequence", "assert.assert-string", "assert.assert-vector", "string.string-repeat", "string.from-char-code", "string.to-char-code", "string.trim-left", "string.trim-right", "string.pad-left", "string.pad-right", "string.split-lines", "string.template", "string.encode-base64", "string.decode-base64", "string.encode-uri-component", "string.decode-uri-component", "string.capitalize", "collection.filteri", "collection.mapi", "collection.reducei", "collection.reduce-right", "collection.reducei-right", "collection.reductions", "collection.reductionsi", "collection.get-in", "collection.assoc-in", "collection.update", "collection.update-in", "collection.not-empty", "collection.every?", "collection.not-every?", "collection.any?", "collection.not-any?", "sequence.position", "sequence.last-index-of", "sequence.shift", "sequence.unshift", "sequence.splice", "sequence.sort-by", "sequence.take", "sequence.take-last", "sequence.take-while", "sequence.drop", "sequence.drop-last", "sequence.drop-while", "sequence.distinct", "sequence.remove", "sequence.remove-at", "sequence.split-at", "sequence.split-with", "sequence.frequencies", "sequence.group-by", "sequence.partition", "sequence.partition-all", "sequence.partition-by", "sequence.starts-with?", "sequence.ends-with?", "sequence.interleave", "sequence.interpose", "bitwise.bit-not", "bitwise.bit-and-not", "bitwise.bit-flip", "bitwise.bit-clear", "bitwise.bit-set", "bitwise.bit-test", "-short-regexp", "-short-fn", "-type-number", "-type-string", "-type-object", "-type-array", "-type-vector", "-type-matrix", "-type-grid", "-type-boolean", "-type-function", "-type-integer", "-type-any", "-type-null", "-type-collection", "-type-sequence", "-type-regexp", "-type-never"];
68
+ export type CoreApiName = typeof coreApiNames[number];
35
69
  export type ApiName = typeof apiNames[number];
36
70
  export declare function isApiName(arg: string): arg is ApiName;
37
- export declare const categoryRecord: {
38
- readonly 'Special expression': true;
39
- readonly Predicate: true;
40
- readonly Sequence: true;
41
- readonly Collection: true;
42
- readonly Array: true;
43
- readonly Object: true;
44
- readonly String: true;
45
- readonly Math: true;
46
- readonly Functional: true;
47
- readonly 'Regular expression': true;
48
- readonly Bitwise: true;
49
- readonly Misc: true;
50
- readonly Assert: true;
51
- readonly Shorthand: true;
52
- readonly Datatype: true;
53
- };
54
- export type Category = keyof typeof categoryRecord;
55
- export declare const categories: Category[];
56
- declare const dataTypes: readonly ["number", "string", "object", "array", "boolean", "function", "integer", "any", "nil", "collection", "sequence", "regexp", "never"];
57
- export type DataType = typeof dataTypes[number];
58
- export declare function isDataType(arg: string): arg is DataType;
59
- export {};
71
+ export declare function isCoreApiName(arg: string): arg is CoreApiName;
@@ -1,51 +1,178 @@
1
- import type { ApiName, Category, DataType, FunctionName } from './api';
1
+ import type { ApiName, Category, CoreApiName, CoreNormalExpressionName, DataType, ModuleExpressionName } from './api';
2
2
  export interface TypedValue {
3
3
  type: DataType[] | DataType;
4
4
  rest?: true;
5
5
  array?: true;
6
6
  }
7
- type NormalExpressionArgument = TypedValue & {
7
+ export type NormalExpressionArgument = TypedValue & {
8
8
  description?: string;
9
9
  };
10
- interface SpecialExpressionArgument {
11
- type: '*expression' | '*name' | '*binding' | '*arguments' | '*catch-expression' | '*conditions' | '*for-binding';
12
- rest?: true;
13
- array?: true;
14
- description?: string;
15
- }
16
- export type Argument = NormalExpressionArgument | SpecialExpressionArgument;
17
- export declare function isSpecialExpressionArgument(arg?: Argument): arg is SpecialExpressionArgument;
18
- export declare function isNormalExpressionArgument(arg?: Argument): arg is NormalExpressionArgument;
19
- export declare function isTypedValue(arg?: Argument): arg is TypedValue;
10
+ export type Argument = NormalExpressionArgument;
20
11
  interface Variant {
21
12
  argumentNames: string[];
22
13
  }
23
14
  export interface CommonReference<T extends Category> {
24
15
  title: string;
25
16
  category: T;
26
- linkName: string;
27
17
  examples: string[];
28
18
  description: string;
29
- clojureDocs?: string | null;
30
19
  seeAlso?: ApiName[];
31
20
  }
32
- export interface FunctionReference<T extends Category = Category> extends CommonReference<T> {
21
+ export type FunctionReference<T extends Category = Category> = CommonReference<T> & {
33
22
  returns: TypedValue;
34
23
  args: Record<string, Argument>;
35
24
  variants: Variant[];
36
- }
37
- export interface ShorthandReference extends CommonReference<'Shorthand'> {
25
+ noOperatorDocumentation?: true;
26
+ _isOperator?: boolean;
27
+ _prefereOperator?: boolean;
28
+ };
29
+ export type CustomReference<T extends Category = Category> = CommonReference<T> & {
30
+ customVariants: string[];
31
+ details?: [string, string, string | undefined][];
32
+ };
33
+ export interface ShorthandReference extends CommonReference<'shorthand'> {
38
34
  shorthand: true;
39
- linkName: `_short_${string}`;
40
35
  }
41
- export interface DatatypeReference extends CommonReference<'Datatype'> {
36
+ export interface DatatypeReference extends CommonReference<'datatype'> {
42
37
  datatype: true;
43
- linkName: `_type_${string}`;
44
38
  }
45
- export type Reference<T extends Category = Category> = FunctionReference<T> | ShorthandReference | DatatypeReference;
39
+ export type Reference<T extends Category = Category> = FunctionReference<T> | CustomReference<T> | ShorthandReference | DatatypeReference;
46
40
  export declare function isFunctionReference<T extends Category>(ref: Reference<T>): ref is FunctionReference<T>;
41
+ export declare function isCustomReference<T extends Category>(ref: Reference<T>): ref is CustomReference<T>;
47
42
  export declare function isShorthandReference<T extends Category>(ref: Reference<T>): ref is ShorthandReference;
48
43
  export declare function isDatatypeReference<T extends Category>(ref: Reference<T>): ref is DatatypeReference;
49
- export declare const functionReference: Record<FunctionName, FunctionReference>;
50
- export declare const apiReference: Record<ApiName, Reference>;
44
+ export declare const normalExpressionReference: Record<CoreNormalExpressionName, FunctionReference>;
45
+ export declare const moduleReference: Record<ModuleExpressionName, FunctionReference>;
46
+ export declare const functionReference: {
47
+ number: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
48
+ boolean: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
49
+ "^": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
50
+ "*": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
51
+ "/": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
52
+ "%": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
53
+ "+": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
54
+ "-": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
55
+ "<<": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
56
+ ">>": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
57
+ ">>>": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
58
+ "++": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
59
+ "<": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
60
+ "<=": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
61
+ ">": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
62
+ ">=": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
63
+ "==": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
64
+ "\u2260": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
65
+ "&": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
66
+ xor: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
67
+ "|": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
68
+ "|>": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
69
+ pop: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
70
+ push: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
71
+ join: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
72
+ reverse: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
73
+ slice: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
74
+ sort: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
75
+ some: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
76
+ map: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
77
+ filter: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
78
+ reduce: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
79
+ find: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
80
+ entries: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
81
+ keys: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
82
+ match: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
83
+ replace: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
84
+ split: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
85
+ trim: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
86
+ repeat: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
87
+ min: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
88
+ max: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
89
+ "!": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
90
+ count: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
91
+ get: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
92
+ "contains?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
93
+ assoc: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
94
+ range: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
95
+ flatten: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
96
+ mapcat: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
97
+ "moving-fn": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
98
+ "running-fn": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
99
+ nth: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
100
+ "index-of": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
101
+ first: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
102
+ second: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
103
+ last: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
104
+ rest: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
105
+ next: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
106
+ mod: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
107
+ quot: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
108
+ inc: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
109
+ dec: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
110
+ sqrt: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
111
+ cbrt: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
112
+ round: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
113
+ trunc: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
114
+ floor: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
115
+ ceil: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
116
+ abs: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
117
+ sign: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
118
+ apply: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
119
+ identity: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
120
+ comp: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
121
+ constantly: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
122
+ doc: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
123
+ arity: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
124
+ "write!": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
125
+ "iso-date->epoch": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
126
+ "epoch->iso-date": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
127
+ compare: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
128
+ "identical?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
129
+ import: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
130
+ "json-parse": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
131
+ "json-stringify": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
132
+ dissoc: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
133
+ vals: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
134
+ merge: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
135
+ "merge-with": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
136
+ zipmap: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
137
+ "select-keys": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
138
+ "boolean?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
139
+ "null?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
140
+ "number?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
141
+ "string?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
142
+ "function?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
143
+ "integer?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
144
+ "array?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
145
+ "object?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
146
+ "collection?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
147
+ "sequence?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
148
+ "regexp?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
149
+ "zero?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
150
+ "pos?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
151
+ "neg?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
152
+ "even?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
153
+ "odd?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
154
+ "finite?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
155
+ "negative-infinity?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
156
+ "positive-infinity?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
157
+ "false?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
158
+ "true?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
159
+ "empty?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
160
+ "not-empty?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
161
+ "vector?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
162
+ "grid?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
163
+ "matrix?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
164
+ regexp: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
165
+ "replace-all": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
166
+ str: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
167
+ "lower-case": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
168
+ "upper-case": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
169
+ "blank?": FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
170
+ sum: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
171
+ mean: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
172
+ median: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
173
+ prod: FunctionReference<"string" | "object" | "array" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assert" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "random" | "shorthand" | "datatype">;
174
+ };
175
+ export declare const apiReference: Record<CoreApiName, Reference>;
176
+ export declare const allReference: Record<ApiName, Reference>;
177
+ export declare function getLinkName(reference: Reference): string;
51
178
  export {};
@@ -0,0 +1,24 @@
1
+ import type { ContextParams, Lits } from '../Lits/Lits';
2
+ export type AutoCompleteSuggestion = {
3
+ program: string;
4
+ position: number;
5
+ };
6
+ export declare class AutoCompleter {
7
+ readonly originalProgram: string;
8
+ readonly originalPosition: number;
9
+ private prefixProgram;
10
+ private suffixProgram;
11
+ private searchString;
12
+ private suggestions;
13
+ private suggestionIndex;
14
+ constructor(originalProgram: string, originalPosition: number, lits: Lits, params: ContextParams);
15
+ getNextSuggestion(): AutoCompleteSuggestion | null;
16
+ getPreviousSuggestion(): AutoCompleteSuggestion | null;
17
+ private getAutoCompleteSuggestionResult;
18
+ private getNextSuggestionSymbol;
19
+ private getPreviousSuggestionSymbol;
20
+ getSuggestions(): string[];
21
+ getSearchString(): string;
22
+ private generateSuggestions;
23
+ private generateWithPredicate;
24
+ }
@@ -1,4 +1,4 @@
1
- import type { Ast } from '../parser/interface';
1
+ import type { Ast } from '../parser/types';
2
2
  export declare class Cache {
3
3
  private cache;
4
4
  private firstEntry;