@mojir/dvala 0.0.7 → 0.0.10

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 (321) hide show
  1. package/dist/cli/cli.js +1622 -1620
  2. package/dist/cli/reference/examples.d.ts +1 -1
  3. package/dist/cli/src/AutoCompleter/AutoCompleter.d.ts +4 -2
  4. package/dist/cli/src/{Dvala/Cache.d.ts → Cache.d.ts} +1 -1
  5. package/dist/cli/src/builtin/specialExpressions/functions.d.ts +1 -1
  6. package/dist/cli/src/createDvala.d.ts +47 -0
  7. package/dist/cli/src/evaluator/ContextStack.d.ts +10 -2
  8. package/dist/cli/src/evaluator/effectTypes.d.ts +24 -6
  9. package/dist/cli/src/evaluator/suspension.d.ts +6 -0
  10. package/dist/cli/src/evaluator/trampoline.d.ts +15 -1
  11. package/dist/cli/src/parser/subParsers/parseDo.d.ts +1 -1
  12. package/dist/cli/src/tokenizer/token.d.ts +2 -4
  13. package/dist/cli/src/tokenizer/tokenize.d.ts +1 -2
  14. package/dist/cli/src/tokenizer/tokenizers.d.ts +2 -3
  15. package/dist/cli/src/tooling.d.ts +51 -0
  16. package/dist/debug.esm.js +1 -1
  17. package/dist/debug.esm.js.map +1 -1
  18. package/dist/debug.js +1 -1
  19. package/dist/debug.js.map +1 -1
  20. package/dist/dvala.iife.js +1 -1
  21. package/dist/dvala.iife.js.map +1 -1
  22. package/dist/full.esm.js +1 -1
  23. package/dist/full.esm.js.map +1 -1
  24. package/dist/full.js +1 -1
  25. package/dist/full.js.map +1 -1
  26. package/dist/index.esm.js +1 -1
  27. package/dist/index.esm.js.map +1 -1
  28. package/dist/index.js +1 -1
  29. package/dist/index.js.map +1 -1
  30. package/dist/mcp-server/common/utils.d.ts +2 -0
  31. package/dist/mcp-server/mcp-server/src/server.d.ts +1 -0
  32. package/dist/mcp-server/reference/api.d.ts +73 -0
  33. package/dist/mcp-server/reference/datatype.d.ts +3 -0
  34. package/dist/mcp-server/reference/examples.d.ts +11 -0
  35. package/dist/mcp-server/reference/index.d.ts +195 -0
  36. package/dist/mcp-server/reference/shorthand.d.ts +3 -0
  37. package/dist/mcp-server/server.js +36377 -0
  38. package/dist/mcp-server/src/AutoCompleter/AutoCompleter.d.ts +27 -0
  39. package/dist/{src/Dvala → mcp-server/src}/Cache.d.ts +1 -1
  40. package/dist/mcp-server/src/allModules.d.ts +2 -0
  41. package/dist/mcp-server/src/builtin/bindingNode.d.ts +11 -0
  42. package/dist/mcp-server/src/builtin/core/array.d.ts +2 -0
  43. package/dist/mcp-server/src/builtin/core/assertion.d.ts +2 -0
  44. package/dist/mcp-server/src/builtin/core/bitwise.d.ts +2 -0
  45. package/dist/mcp-server/src/builtin/core/collection.d.ts +2 -0
  46. package/dist/mcp-server/src/builtin/core/functional.d.ts +2 -0
  47. package/dist/mcp-server/src/builtin/core/math.d.ts +2 -0
  48. package/dist/mcp-server/src/builtin/core/meta.d.ts +3 -0
  49. package/dist/mcp-server/src/builtin/core/misc.d.ts +2 -0
  50. package/dist/mcp-server/src/builtin/core/object.d.ts +2 -0
  51. package/dist/mcp-server/src/builtin/core/predicates.d.ts +2 -0
  52. package/dist/mcp-server/src/builtin/core/regexp.d.ts +2 -0
  53. package/dist/mcp-server/src/builtin/core/sequence.d.ts +2 -0
  54. package/dist/mcp-server/src/builtin/core/string.d.ts +2 -0
  55. package/dist/mcp-server/src/builtin/core/vector.d.ts +2 -0
  56. package/dist/mcp-server/src/builtin/index.d.ts +13 -0
  57. package/dist/mcp-server/src/builtin/interface.d.ts +113 -0
  58. package/dist/mcp-server/src/builtin/modules/assertion/docs.d.ts +2 -0
  59. package/dist/mcp-server/src/builtin/modules/assertion/index.d.ts +2 -0
  60. package/dist/mcp-server/src/builtin/modules/bitwise/index.d.ts +2 -0
  61. package/dist/mcp-server/src/builtin/modules/collection/index.d.ts +2 -0
  62. package/dist/mcp-server/src/builtin/modules/convert/index.d.ts +2 -0
  63. package/dist/mcp-server/src/builtin/modules/functional/index.d.ts +2 -0
  64. package/dist/mcp-server/src/builtin/modules/grid/docs.d.ts +2 -0
  65. package/dist/mcp-server/src/builtin/modules/grid/fromArray.d.ts +8 -0
  66. package/dist/mcp-server/src/builtin/modules/grid/index.d.ts +2 -0
  67. package/dist/mcp-server/src/builtin/modules/grid/transpose.d.ts +2 -0
  68. package/dist/mcp-server/src/builtin/modules/interface.d.ts +28 -0
  69. package/dist/mcp-server/src/builtin/modules/linear-algebra/docs.d.ts +2 -0
  70. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/calcFractionalRanks.d.ts +1 -0
  71. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/collinear.d.ts +2 -0
  72. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/corrleation.d.ts +8 -0
  73. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/covariance.d.ts +4 -0
  74. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/dot.d.ts +1 -0
  75. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/gaussJordanElimination.d.ts +7 -0
  76. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/getUnit.d.ts +2 -0
  77. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/isZeroVector.d.ts +1 -0
  78. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/kendallTau.d.ts +10 -0
  79. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/length.d.ts +1 -0
  80. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/pearsonCorr.d.ts +1 -0
  81. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/scale.d.ts +1 -0
  82. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/solve.d.ts +8 -0
  83. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/subtract.d.ts +1 -0
  84. package/dist/mcp-server/src/builtin/modules/linear-algebra/index.d.ts +4 -0
  85. package/dist/mcp-server/src/builtin/modules/math/index.d.ts +2 -0
  86. package/dist/mcp-server/src/builtin/modules/matrix/docs.d.ts +2 -0
  87. package/dist/mcp-server/src/builtin/modules/matrix/helpers/adjugate.d.ts +1 -0
  88. package/dist/mcp-server/src/builtin/modules/matrix/helpers/band.d.ts +9 -0
  89. package/dist/mcp-server/src/builtin/modules/matrix/helpers/cofactor.d.ts +1 -0
  90. package/dist/mcp-server/src/builtin/modules/matrix/helpers/determinant.d.ts +6 -0
  91. package/dist/mcp-server/src/builtin/modules/matrix/helpers/inverse.d.ts +6 -0
  92. package/dist/mcp-server/src/builtin/modules/matrix/helpers/isBanded.d.ts +11 -0
  93. package/dist/mcp-server/src/builtin/modules/matrix/helpers/isDiagonal.d.ts +10 -0
  94. package/dist/mcp-server/src/builtin/modules/matrix/helpers/isIdentity.d.ts +1 -0
  95. package/dist/mcp-server/src/builtin/modules/matrix/helpers/isOrthogonal.d.ts +1 -0
  96. package/dist/mcp-server/src/builtin/modules/matrix/helpers/isSquare.d.ts +1 -0
  97. package/dist/mcp-server/src/builtin/modules/matrix/helpers/isSymetric.d.ts +8 -0
  98. package/dist/mcp-server/src/builtin/modules/matrix/helpers/isTriangular.d.ts +13 -0
  99. package/dist/mcp-server/src/builtin/modules/matrix/helpers/matrixMultiply.d.ts +7 -0
  100. package/dist/mcp-server/src/builtin/modules/matrix/helpers/minor.d.ts +1 -0
  101. package/dist/mcp-server/src/builtin/modules/matrix/helpers/norm1.d.ts +1 -0
  102. package/dist/mcp-server/src/builtin/modules/matrix/helpers/trace.d.ts +8 -0
  103. package/dist/mcp-server/src/builtin/modules/matrix/index.d.ts +4 -0
  104. package/dist/mcp-server/src/builtin/modules/number-theory/binomialCefficient.d.ts +1 -0
  105. package/dist/mcp-server/src/builtin/modules/number-theory/combinations.d.ts +2 -0
  106. package/dist/mcp-server/src/builtin/modules/number-theory/derangements.d.ts +2 -0
  107. package/dist/mcp-server/src/builtin/modules/number-theory/divisors.d.ts +4 -0
  108. package/dist/mcp-server/src/builtin/modules/number-theory/docs.d.ts +2 -0
  109. package/dist/mcp-server/src/builtin/modules/number-theory/factorial.d.ts +3 -0
  110. package/dist/mcp-server/src/builtin/modules/number-theory/index.d.ts +4 -0
  111. package/dist/mcp-server/src/builtin/modules/number-theory/partitions.d.ts +2 -0
  112. package/dist/mcp-server/src/builtin/modules/number-theory/permutations.d.ts +2 -0
  113. package/dist/mcp-server/src/builtin/modules/number-theory/powerSet.d.ts +2 -0
  114. package/dist/mcp-server/src/builtin/modules/number-theory/primeFactors.d.ts +11 -0
  115. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/abundant.d.ts +2 -0
  116. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/arithmetic.d.ts +2 -0
  117. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/bell.d.ts +1 -0
  118. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/bernoulli.d.ts +2 -0
  119. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/catalan.d.ts +1 -0
  120. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/collatz.d.ts +2 -0
  121. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/composite.d.ts +3 -0
  122. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/deficient.d.ts +2 -0
  123. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/factorial.d.ts +1 -0
  124. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/fibonacci.d.ts +1 -0
  125. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/geometric.d.ts +2 -0
  126. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/golomb.d.ts +2 -0
  127. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/happy.d.ts +2 -0
  128. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/index.d.ts +27 -0
  129. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/juggler.d.ts +2 -0
  130. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/lookAndSay.d.ts +2 -0
  131. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/lucas.d.ts +1 -0
  132. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/lucky.d.ts +2 -0
  133. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/mersenne.d.ts +1 -0
  134. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/padovan.d.ts +2 -0
  135. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/partition.d.ts +1 -0
  136. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/pell.d.ts +1 -0
  137. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/perfect.d.ts +1 -0
  138. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/perfectCube.d.ts +2 -0
  139. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/perfectPower.d.ts +10 -0
  140. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/perfectSquare.d.ts +2 -0
  141. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/poligonal.d.ts +2 -0
  142. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/prime.d.ts +3 -0
  143. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/recaman.d.ts +9 -0
  144. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/sylvester.d.ts +1 -0
  145. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/thueMorse.d.ts +2 -0
  146. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/tribonacci.d.ts +1 -0
  147. package/dist/mcp-server/src/builtin/modules/sequence/index.d.ts +2 -0
  148. package/dist/mcp-server/src/builtin/modules/string/index.d.ts +2 -0
  149. package/dist/mcp-server/src/builtin/modules/vector/bincount.d.ts +9 -0
  150. package/dist/mcp-server/src/builtin/modules/vector/calcMad.d.ts +1 -0
  151. package/dist/mcp-server/src/builtin/modules/vector/calcMean.d.ts +1 -0
  152. package/dist/mcp-server/src/builtin/modules/vector/calcMedad.d.ts +1 -0
  153. package/dist/mcp-server/src/builtin/modules/vector/calcMedian.d.ts +1 -0
  154. package/dist/mcp-server/src/builtin/modules/vector/calcStdDev.d.ts +2 -0
  155. package/dist/mcp-server/src/builtin/modules/vector/calcVariance.d.ts +2 -0
  156. package/dist/mcp-server/src/builtin/modules/vector/docs.d.ts +2 -0
  157. package/dist/mcp-server/src/builtin/modules/vector/entropy.d.ts +8 -0
  158. package/dist/mcp-server/src/builtin/modules/vector/histogram.d.ts +9 -0
  159. package/dist/mcp-server/src/builtin/modules/vector/index.d.ts +2 -0
  160. package/dist/mcp-server/src/builtin/modules/vector/mode.d.ts +6 -0
  161. package/dist/mcp-server/src/builtin/modules/vector/outliers.d.ts +7 -0
  162. package/dist/mcp-server/src/builtin/modules/vector/percentile.d.ts +7 -0
  163. package/dist/mcp-server/src/builtin/modules/vector/quartiles.d.ts +1 -0
  164. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/entropy.d.ts +2 -0
  165. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/giniCoefficient.d.ts +2 -0
  166. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/index.d.ts +13 -0
  167. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/iqr.d.ts +2 -0
  168. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/kurtosis.d.ts +5 -0
  169. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/mad.d.ts +2 -0
  170. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/mean.d.ts +4 -0
  171. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/medad.d.ts +2 -0
  172. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/median.d.ts +2 -0
  173. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/prod.d.ts +2 -0
  174. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/rms.d.ts +2 -0
  175. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/skewness.d.ts +3 -0
  176. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/span.d.ts +2 -0
  177. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/standardDeviation.d.ts +3 -0
  178. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/sum.d.ts +2 -0
  179. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/variance.d.ts +3 -0
  180. package/dist/mcp-server/src/builtin/normalExpressions/index.d.ts +9 -0
  181. package/dist/mcp-server/src/builtin/normalExpressions/initCoreDvala.d.ts +1 -0
  182. package/dist/mcp-server/src/builtin/specialExpressionTypes.d.ts +24 -0
  183. package/dist/mcp-server/src/builtin/specialExpressions/and.d.ts +6 -0
  184. package/dist/mcp-server/src/builtin/specialExpressions/array.d.ts +6 -0
  185. package/dist/mcp-server/src/builtin/specialExpressions/block.d.ts +7 -0
  186. package/dist/mcp-server/src/builtin/specialExpressions/cond.d.ts +6 -0
  187. package/dist/mcp-server/src/builtin/specialExpressions/defined.d.ts +5 -0
  188. package/dist/mcp-server/src/builtin/specialExpressions/effect.d.ts +5 -0
  189. package/dist/mcp-server/src/builtin/specialExpressions/functions.d.ts +6 -0
  190. package/dist/mcp-server/src/builtin/specialExpressions/if.d.ts +6 -0
  191. package/dist/mcp-server/src/builtin/specialExpressions/import.d.ts +6 -0
  192. package/dist/mcp-server/src/builtin/specialExpressions/let.d.ts +6 -0
  193. package/dist/mcp-server/src/builtin/specialExpressions/loop.d.ts +6 -0
  194. package/dist/mcp-server/src/builtin/specialExpressions/loops.d.ts +9 -0
  195. package/dist/mcp-server/src/builtin/specialExpressions/match.d.ts +7 -0
  196. package/dist/mcp-server/src/builtin/specialExpressions/object.d.ts +6 -0
  197. package/dist/mcp-server/src/builtin/specialExpressions/or.d.ts +6 -0
  198. package/dist/mcp-server/src/builtin/specialExpressions/parallel.d.ts +6 -0
  199. package/dist/mcp-server/src/builtin/specialExpressions/perform.d.ts +6 -0
  200. package/dist/mcp-server/src/builtin/specialExpressions/qq.d.ts +6 -0
  201. package/dist/mcp-server/src/builtin/specialExpressions/race.d.ts +6 -0
  202. package/dist/mcp-server/src/builtin/specialExpressions/recur.d.ts +5 -0
  203. package/dist/mcp-server/src/builtin/specialExpressions/unless.d.ts +6 -0
  204. package/dist/mcp-server/src/builtin/utils.d.ts +6 -0
  205. package/dist/mcp-server/src/bundler/interface.d.ts +15 -0
  206. package/dist/mcp-server/src/constants/constants.d.ts +19 -0
  207. package/dist/mcp-server/src/createDvala.d.ts +47 -0
  208. package/dist/mcp-server/src/errors.d.ts +24 -0
  209. package/dist/mcp-server/src/evaluator/ContextStack.d.ts +70 -0
  210. package/dist/mcp-server/src/evaluator/contentHash.d.ts +21 -0
  211. package/dist/mcp-server/src/evaluator/dedupSubTrees.d.ts +37 -0
  212. package/dist/mcp-server/src/evaluator/effectRef.d.ts +27 -0
  213. package/dist/mcp-server/src/evaluator/effectTypes.d.ts +199 -0
  214. package/dist/mcp-server/src/evaluator/frames.d.ts +513 -0
  215. package/dist/mcp-server/src/evaluator/interface.d.ts +14 -0
  216. package/dist/mcp-server/src/evaluator/standardEffects.d.ts +50 -0
  217. package/dist/mcp-server/src/evaluator/step.d.ts +175 -0
  218. package/dist/mcp-server/src/evaluator/suspension.d.ts +92 -0
  219. package/dist/mcp-server/src/evaluator/trampoline.d.ts +138 -0
  220. package/dist/mcp-server/src/getUndefinedSymbols/index.d.ts +7 -0
  221. package/dist/mcp-server/src/initReferenceData.d.ts +1 -0
  222. package/dist/mcp-server/src/interface.d.ts +7 -0
  223. package/dist/mcp-server/src/parser/ParserContext.d.ts +20 -0
  224. package/dist/mcp-server/src/parser/getPrecedence.d.ts +3 -0
  225. package/dist/mcp-server/src/parser/helpers.d.ts +19 -0
  226. package/dist/mcp-server/src/parser/index.d.ts +5 -0
  227. package/dist/mcp-server/src/parser/subParsers/parseArray.d.ts +3 -0
  228. package/dist/mcp-server/src/parser/subParsers/parseBindingTarget.d.ts +8 -0
  229. package/dist/mcp-server/src/parser/subParsers/parseCond.d.ts +4 -0
  230. package/dist/mcp-server/src/parser/subParsers/parseDo.d.ts +3 -0
  231. package/dist/mcp-server/src/parser/subParsers/parseExpression.d.ts +5 -0
  232. package/dist/mcp-server/src/parser/subParsers/parseForOrDoseq.d.ts +4 -0
  233. package/dist/mcp-server/src/parser/subParsers/parseFunction.d.ts +4 -0
  234. package/dist/mcp-server/src/parser/subParsers/parseFunctionCall.d.ts +3 -0
  235. package/dist/mcp-server/src/parser/subParsers/parseIfOrUnless.d.ts +5 -0
  236. package/dist/mcp-server/src/parser/subParsers/parseImplicitBlock.d.ts +5 -0
  237. package/dist/mcp-server/src/parser/subParsers/parseLet.d.ts +4 -0
  238. package/dist/mcp-server/src/parser/subParsers/parseLoop.d.ts +4 -0
  239. package/dist/mcp-server/src/parser/subParsers/parseMatch.d.ts +4 -0
  240. package/dist/mcp-server/src/parser/subParsers/parseNumber.d.ts +3 -0
  241. package/dist/mcp-server/src/parser/subParsers/parseObject.d.ts +3 -0
  242. package/dist/mcp-server/src/parser/subParsers/parseOperand.d.ts +3 -0
  243. package/dist/mcp-server/src/parser/subParsers/parseRegexpShorthand.d.ts +3 -0
  244. package/dist/mcp-server/src/parser/subParsers/parseReservedSymbol.d.ts +3 -0
  245. package/dist/mcp-server/src/parser/subParsers/parseString.d.ts +4 -0
  246. package/dist/mcp-server/src/parser/subParsers/parseSymbol.d.ts +3 -0
  247. package/dist/mcp-server/src/parser/types.d.ts +128 -0
  248. package/dist/mcp-server/src/tokenizer/minifyTokenStream.d.ts +4 -0
  249. package/dist/mcp-server/src/tokenizer/operators.d.ts +12 -0
  250. package/dist/mcp-server/src/tokenizer/reservedNames.d.ts +65 -0
  251. package/dist/mcp-server/src/tokenizer/token.d.ts +82 -0
  252. package/dist/mcp-server/src/tokenizer/tokenize.d.ts +7 -0
  253. package/dist/mcp-server/src/tokenizer/tokenizers.d.ts +13 -0
  254. package/dist/mcp-server/src/tooling.d.ts +51 -0
  255. package/dist/mcp-server/src/transformer/index.d.ts +2 -0
  256. package/dist/mcp-server/src/typeGuards/annotatedCollections.d.ts +16 -0
  257. package/dist/mcp-server/src/typeGuards/array.d.ts +9 -0
  258. package/dist/mcp-server/src/typeGuards/astNode.d.ts +19 -0
  259. package/dist/mcp-server/src/typeGuards/dvala.d.ts +26 -0
  260. package/dist/mcp-server/src/typeGuards/dvalaFunction.d.ts +9 -0
  261. package/dist/mcp-server/src/typeGuards/index.d.ts +7 -0
  262. package/dist/mcp-server/src/typeGuards/number.d.ts +66 -0
  263. package/dist/mcp-server/src/typeGuards/string.d.ts +15 -0
  264. package/dist/mcp-server/src/untokenizer/index.d.ts +2 -0
  265. package/dist/mcp-server/src/utils/arity.d.ts +10 -0
  266. package/dist/mcp-server/src/utils/debug/debugTools.d.ts +1 -0
  267. package/dist/mcp-server/src/utils/debug/getCodeMarker.d.ts +2 -0
  268. package/dist/mcp-server/src/utils/debug/getSourceCodeInfo.d.ts +2 -0
  269. package/dist/mcp-server/src/utils/docString/generateDocString.d.ts +4 -0
  270. package/dist/mcp-server/src/utils/getAssertionError.d.ts +3 -0
  271. package/dist/mcp-server/src/utils/index.d.ts +14 -0
  272. package/dist/mcp-server/src/utils/maybePromise.d.ts +54 -0
  273. package/dist/mcp-server/src/utils/symbols.d.ts +3 -0
  274. package/dist/modules/grid.esm.js +1 -1
  275. package/dist/modules/grid.esm.js.map +1 -1
  276. package/dist/modules/grid.js +1 -1
  277. package/dist/modules/grid.js.map +1 -1
  278. package/dist/modules/reference/index.d.ts +136 -136
  279. package/dist/modules/src/AutoCompleter/AutoCompleter.d.ts +4 -2
  280. package/dist/modules/src/{Dvala/Cache.d.ts → Cache.d.ts} +1 -1
  281. package/dist/modules/src/builtin/specialExpressions/functions.d.ts +1 -1
  282. package/dist/modules/src/createDvala.d.ts +47 -0
  283. package/dist/modules/src/evaluator/ContextStack.d.ts +10 -2
  284. package/dist/modules/src/evaluator/effectTypes.d.ts +24 -6
  285. package/dist/modules/src/evaluator/suspension.d.ts +6 -0
  286. package/dist/modules/src/evaluator/trampoline.d.ts +15 -1
  287. package/dist/modules/src/index.d.ts +10 -5
  288. package/dist/modules/src/parser/subParsers/parseDo.d.ts +1 -1
  289. package/dist/modules/src/resume.d.ts +41 -0
  290. package/dist/modules/src/retrigger.d.ts +39 -0
  291. package/dist/modules/src/tokenizer/token.d.ts +2 -4
  292. package/dist/modules/src/tokenizer/tokenize.d.ts +1 -2
  293. package/dist/modules/src/tokenizer/tokenizers.d.ts +2 -3
  294. package/dist/modules/src/tooling.d.ts +51 -0
  295. package/dist/reference/index.d.ts +136 -136
  296. package/dist/src/AutoCompleter/AutoCompleter.d.ts +4 -2
  297. package/dist/src/Cache.d.ts +16 -0
  298. package/dist/src/builtin/specialExpressions/functions.d.ts +1 -1
  299. package/dist/src/createDvala.d.ts +47 -0
  300. package/dist/src/evaluator/ContextStack.d.ts +10 -2
  301. package/dist/src/evaluator/effectTypes.d.ts +24 -6
  302. package/dist/src/evaluator/suspension.d.ts +6 -0
  303. package/dist/src/evaluator/trampoline.d.ts +15 -1
  304. package/dist/src/index.d.ts +10 -5
  305. package/dist/src/parser/subParsers/parseDo.d.ts +1 -1
  306. package/dist/src/resume.d.ts +41 -0
  307. package/dist/src/retrigger.d.ts +39 -0
  308. package/dist/src/tokenizer/token.d.ts +2 -4
  309. package/dist/src/tokenizer/tokenize.d.ts +1 -2
  310. package/dist/src/tokenizer/tokenizers.d.ts +2 -3
  311. package/dist/src/tooling.d.ts +51 -0
  312. package/dist/testFramework.esm.js +1 -1
  313. package/dist/testFramework.esm.js.map +1 -1
  314. package/dist/testFramework.js +1 -1
  315. package/dist/testFramework.js.map +1 -1
  316. package/package.json +17 -6
  317. package/dist/cli/src/Dvala/Dvala.d.ts +0 -63
  318. package/dist/modules/src/Dvala/Dvala.d.ts +0 -63
  319. package/dist/modules/src/effects.d.ts +0 -110
  320. package/dist/src/Dvala/Dvala.d.ts +0 -63
  321. package/dist/src/effects.d.ts +0 -110
@@ -0,0 +1,2 @@
1
+ export declare function stringifyValue(value: unknown, html: boolean): string;
2
+ export declare function findAllOccurrences(input: string, pattern: RegExp): Set<string>;
@@ -0,0 +1 @@
1
+ import '../../src/initReferenceData';
@@ -0,0 +1,73 @@
1
+ export { categories, categoryRecord, coreCategories, isDataType, moduleCategories } from '../src/builtin/interface';
2
+ export type { Category, DataType } from '../src/builtin/interface';
3
+ export declare const api: {
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", "take", "take-last", "drop", "drop-last", "take-while", "drop-while"];
8
+ readonly sequenceUtils: readonly ["sequence.position", "sequence.last-index-of", "sequence.unshift", "sequence.splice", "sequence.sort-by", "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", "effect-name", "effect-matcher"];
14
+ readonly misc: readonly ["!=", "==", "<", ">", "<=", ">=", "not", "iso-date->epoch", "epoch->iso-date", "boolean", "compare", "identical?", "json-parse", "json-stringify", "type-of"];
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?", "effect?", "zero?", "pos?", "neg?", "even?", "odd?", "finite?", "negative-infinity?", "positive-infinity?", "false?", "true?", "empty?", "not-empty?", "vector?", "grid?", "matrix?"];
17
+ readonly regularExpression: readonly ["regexp", "re-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 assertion: readonly ["assert"];
23
+ readonly assertionUtils: readonly ["assertion.assert=", "assertion.assert!=", "assertion.assert-gt", "assertion.assert-lt", "assertion.assert-gte", "assertion.assert-lte", "assertion.assert-true", "assertion.assert-false", "assertion.assert-truthy", "assertion.assert-falsy", "assertion.assert-null", "assertion.assert-throws", "assertion.assert-throws-error", "assertion.assert-not-throws", "assertion.assert-array", "assertion.assert-boolean", "assertion.assert-collection", "assertion.assert-function", "assertion.assert-grid", "assertion.assert-integer", "assertion.assert-matrix", "assertion.assert-number", "assertion.assert-object", "assertion.assert-regexp", "assertion.assert-sequence", "assertion.assert-string", "assertion.assert-vector"];
24
+ readonly grid: readonly ["grid.cell-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.crop", "grid.slice-rows", "grid.slice-cols", "grid.splice-rows", "grid.splice-cols", "grid.concat-rows", "grid.concat-cols", "grid.cell-map", "grid.cell-mapi", "grid.cell-reduce", "grid.cell-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"];
25
+ 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?", "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"];
26
+ readonly vector: readonly ["sum", "mean", "median", "prod"];
27
+ readonly vectorUtils: readonly ["vector.monotonic?", "vector.strictly-monotonic?", "vector.increasing?", "vector.decreasing?", "vector.strictly-increasing?", "vector.strictly-decreasing?", "vector.mode", "vector.min-index", "vector.max-index", "vector.sort-indices", "vector.count-values", "vector.linspace", "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.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, `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.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, `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}`];
28
+ 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"];
29
+ 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"];
30
+ readonly convert: readonly ["convert.angstrom->um", "convert.angstrom->mm", "convert.angstrom->cm", "convert.angstrom->m", "convert.angstrom->km", "convert.angstrom->in", "convert.angstrom->ft", "convert.angstrom->yd", "convert.angstrom->mi", "convert.angstrom->nmi", "convert.um->angstrom", "convert.um->mm", "convert.um->cm", "convert.um->m", "convert.um->km", "convert.um->in", "convert.um->ft", "convert.um->yd", "convert.um->mi", "convert.um->nmi", "convert.mm->angstrom", "convert.mm->um", "convert.mm->cm", "convert.mm->m", "convert.mm->km", "convert.mm->in", "convert.mm->ft", "convert.mm->yd", "convert.mm->mi", "convert.mm->nmi", "convert.cm->angstrom", "convert.cm->um", "convert.cm->mm", "convert.cm->m", "convert.cm->km", "convert.cm->in", "convert.cm->ft", "convert.cm->yd", "convert.cm->mi", "convert.cm->nmi", "convert.m->angstrom", "convert.m->um", "convert.m->mm", "convert.m->cm", "convert.m->km", "convert.m->in", "convert.m->ft", "convert.m->yd", "convert.m->mi", "convert.m->nmi", "convert.km->angstrom", "convert.km->um", "convert.km->mm", "convert.km->cm", "convert.km->m", "convert.km->in", "convert.km->ft", "convert.km->yd", "convert.km->mi", "convert.km->nmi", "convert.in->angstrom", "convert.in->um", "convert.in->mm", "convert.in->cm", "convert.in->m", "convert.in->km", "convert.in->ft", "convert.in->yd", "convert.in->mi", "convert.in->nmi", "convert.ft->angstrom", "convert.ft->um", "convert.ft->mm", "convert.ft->cm", "convert.ft->m", "convert.ft->km", "convert.ft->in", "convert.ft->yd", "convert.ft->mi", "convert.ft->nmi", "convert.yd->angstrom", "convert.yd->um", "convert.yd->mm", "convert.yd->cm", "convert.yd->m", "convert.yd->km", "convert.yd->in", "convert.yd->ft", "convert.yd->mi", "convert.yd->nmi", "convert.mi->angstrom", "convert.mi->um", "convert.mi->mm", "convert.mi->cm", "convert.mi->m", "convert.mi->km", "convert.mi->in", "convert.mi->ft", "convert.mi->yd", "convert.mi->nmi", "convert.nmi->angstrom", "convert.nmi->um", "convert.nmi->mm", "convert.nmi->cm", "convert.nmi->m", "convert.nmi->km", "convert.nmi->in", "convert.nmi->ft", "convert.nmi->yd", "convert.nmi->mi", "convert.mg->g", "convert.mg->kg", "convert.mg->t", "convert.mg->oz", "convert.mg->lb", "convert.mg->st", "convert.g->mg", "convert.g->kg", "convert.g->t", "convert.g->oz", "convert.g->lb", "convert.g->st", "convert.kg->mg", "convert.kg->g", "convert.kg->t", "convert.kg->oz", "convert.kg->lb", "convert.kg->st", "convert.t->mg", "convert.t->g", "convert.t->kg", "convert.t->oz", "convert.t->lb", "convert.t->st", "convert.oz->mg", "convert.oz->g", "convert.oz->kg", "convert.oz->t", "convert.oz->lb", "convert.oz->st", "convert.lb->mg", "convert.lb->g", "convert.lb->kg", "convert.lb->t", "convert.lb->oz", "convert.lb->st", "convert.st->mg", "convert.st->g", "convert.st->kg", "convert.st->t", "convert.st->oz", "convert.st->lb", "convert.ml->cl", "convert.ml->dl", "convert.ml->l", "convert.ml->tsp", "convert.ml->tbsp", "convert.ml->fl-oz", "convert.ml->cup", "convert.ml->pt", "convert.ml->qt", "convert.ml->gal", "convert.cl->ml", "convert.cl->dl", "convert.cl->l", "convert.cl->tsp", "convert.cl->tbsp", "convert.cl->fl-oz", "convert.cl->cup", "convert.cl->pt", "convert.cl->qt", "convert.cl->gal", "convert.dl->ml", "convert.dl->cl", "convert.dl->l", "convert.dl->tsp", "convert.dl->tbsp", "convert.dl->fl-oz", "convert.dl->cup", "convert.dl->pt", "convert.dl->qt", "convert.dl->gal", "convert.l->ml", "convert.l->cl", "convert.l->dl", "convert.l->tsp", "convert.l->tbsp", "convert.l->fl-oz", "convert.l->cup", "convert.l->pt", "convert.l->qt", "convert.l->gal", "convert.tsp->ml", "convert.tsp->cl", "convert.tsp->dl", "convert.tsp->l", "convert.tsp->tbsp", "convert.tsp->fl-oz", "convert.tsp->cup", "convert.tsp->pt", "convert.tsp->qt", "convert.tsp->gal", "convert.tbsp->ml", "convert.tbsp->cl", "convert.tbsp->dl", "convert.tbsp->l", "convert.tbsp->tsp", "convert.tbsp->fl-oz", "convert.tbsp->cup", "convert.tbsp->pt", "convert.tbsp->qt", "convert.tbsp->gal", "convert.fl-oz->ml", "convert.fl-oz->cl", "convert.fl-oz->dl", "convert.fl-oz->l", "convert.fl-oz->tsp", "convert.fl-oz->tbsp", "convert.fl-oz->cup", "convert.fl-oz->pt", "convert.fl-oz->qt", "convert.fl-oz->gal", "convert.cup->ml", "convert.cup->cl", "convert.cup->dl", "convert.cup->l", "convert.cup->tsp", "convert.cup->tbsp", "convert.cup->fl-oz", "convert.cup->pt", "convert.cup->qt", "convert.cup->gal", "convert.pt->ml", "convert.pt->cl", "convert.pt->dl", "convert.pt->l", "convert.pt->tsp", "convert.pt->tbsp", "convert.pt->fl-oz", "convert.pt->cup", "convert.pt->qt", "convert.pt->gal", "convert.qt->ml", "convert.qt->cl", "convert.qt->dl", "convert.qt->l", "convert.qt->tsp", "convert.qt->tbsp", "convert.qt->fl-oz", "convert.qt->cup", "convert.qt->pt", "convert.qt->gal", "convert.gal->ml", "convert.gal->cl", "convert.gal->dl", "convert.gal->l", "convert.gal->tsp", "convert.gal->tbsp", "convert.gal->fl-oz", "convert.gal->cup", "convert.gal->pt", "convert.gal->qt", "convert.ms->s", "convert.ms->min", "convert.ms->h", "convert.ms->day", "convert.ms->week", "convert.s->ms", "convert.s->min", "convert.s->h", "convert.s->day", "convert.s->week", "convert.min->ms", "convert.min->s", "convert.min->h", "convert.min->day", "convert.min->week", "convert.h->ms", "convert.h->s", "convert.h->min", "convert.h->day", "convert.h->week", "convert.day->ms", "convert.day->s", "convert.day->min", "convert.day->h", "convert.day->week", "convert.week->ms", "convert.week->s", "convert.week->min", "convert.week->h", "convert.week->day", "convert.mm2->cm2", "convert.mm2->m2", "convert.mm2->km2", "convert.mm2->in2", "convert.mm2->ft2", "convert.mm2->yd2", "convert.mm2->acre", "convert.mm2->hectare", "convert.cm2->mm2", "convert.cm2->m2", "convert.cm2->km2", "convert.cm2->in2", "convert.cm2->ft2", "convert.cm2->yd2", "convert.cm2->acre", "convert.cm2->hectare", "convert.m2->mm2", "convert.m2->cm2", "convert.m2->km2", "convert.m2->in2", "convert.m2->ft2", "convert.m2->yd2", "convert.m2->acre", "convert.m2->hectare", "convert.km2->mm2", "convert.km2->cm2", "convert.km2->m2", "convert.km2->in2", "convert.km2->ft2", "convert.km2->yd2", "convert.km2->acre", "convert.km2->hectare", "convert.in2->mm2", "convert.in2->cm2", "convert.in2->m2", "convert.in2->km2", "convert.in2->ft2", "convert.in2->yd2", "convert.in2->acre", "convert.in2->hectare", "convert.ft2->mm2", "convert.ft2->cm2", "convert.ft2->m2", "convert.ft2->km2", "convert.ft2->in2", "convert.ft2->yd2", "convert.ft2->acre", "convert.ft2->hectare", "convert.yd2->mm2", "convert.yd2->cm2", "convert.yd2->m2", "convert.yd2->km2", "convert.yd2->in2", "convert.yd2->ft2", "convert.yd2->acre", "convert.yd2->hectare", "convert.acre->mm2", "convert.acre->cm2", "convert.acre->m2", "convert.acre->km2", "convert.acre->in2", "convert.acre->ft2", "convert.acre->yd2", "convert.acre->hectare", "convert.hectare->mm2", "convert.hectare->cm2", "convert.hectare->m2", "convert.hectare->km2", "convert.hectare->in2", "convert.hectare->ft2", "convert.hectare->yd2", "convert.hectare->acre", "convert.m/s->km/h", "convert.m/s->mph", "convert.m/s->kn", "convert.m/s->ft/s", "convert.km/h->m/s", "convert.km/h->mph", "convert.km/h->kn", "convert.km/h->ft/s", "convert.mph->m/s", "convert.mph->km/h", "convert.mph->kn", "convert.mph->ft/s", "convert.kn->m/s", "convert.kn->km/h", "convert.kn->mph", "convert.kn->ft/s", "convert.ft/s->m/s", "convert.ft/s->km/h", "convert.ft/s->mph", "convert.ft/s->kn", "convert.b->kb", "convert.b->mb", "convert.b->gb", "convert.b->tb", "convert.b->pb", "convert.kb->b", "convert.kb->mb", "convert.kb->gb", "convert.kb->tb", "convert.kb->pb", "convert.mb->b", "convert.mb->kb", "convert.mb->gb", "convert.mb->tb", "convert.mb->pb", "convert.gb->b", "convert.gb->kb", "convert.gb->mb", "convert.gb->tb", "convert.gb->pb", "convert.tb->b", "convert.tb->kb", "convert.tb->mb", "convert.tb->gb", "convert.tb->pb", "convert.pb->b", "convert.pb->kb", "convert.pb->mb", "convert.pb->gb", "convert.pb->tb", "convert.pa->kpa", "convert.pa->bar", "convert.pa->atm", "convert.pa->psi", "convert.pa->mmhg", "convert.kpa->pa", "convert.kpa->bar", "convert.kpa->atm", "convert.kpa->psi", "convert.kpa->mmhg", "convert.bar->pa", "convert.bar->kpa", "convert.bar->atm", "convert.bar->psi", "convert.bar->mmhg", "convert.atm->pa", "convert.atm->kpa", "convert.atm->bar", "convert.atm->psi", "convert.atm->mmhg", "convert.psi->pa", "convert.psi->kpa", "convert.psi->bar", "convert.psi->atm", "convert.psi->mmhg", "convert.mmhg->pa", "convert.mmhg->kpa", "convert.mmhg->bar", "convert.mmhg->atm", "convert.mmhg->psi", "convert.j->kj", "convert.j->cal", "convert.j->kcal", "convert.j->wh", "convert.j->kwh", "convert.j->btu", "convert.kj->j", "convert.kj->cal", "convert.kj->kcal", "convert.kj->wh", "convert.kj->kwh", "convert.kj->btu", "convert.cal->j", "convert.cal->kj", "convert.cal->kcal", "convert.cal->wh", "convert.cal->kwh", "convert.cal->btu", "convert.kcal->j", "convert.kcal->kj", "convert.kcal->cal", "convert.kcal->wh", "convert.kcal->kwh", "convert.kcal->btu", "convert.wh->j", "convert.wh->kj", "convert.wh->cal", "convert.wh->kcal", "convert.wh->kwh", "convert.wh->btu", "convert.kwh->j", "convert.kwh->kj", "convert.kwh->cal", "convert.kwh->kcal", "convert.kwh->wh", "convert.kwh->btu", "convert.btu->j", "convert.btu->kj", "convert.btu->cal", "convert.btu->kcal", "convert.btu->wh", "convert.btu->kwh", "convert.w->kw", "convert.w->mw", "convert.w->hp", "convert.kw->w", "convert.kw->mw", "convert.kw->hp", "convert.mw->w", "convert.mw->kw", "convert.mw->hp", "convert.hp->w", "convert.hp->kw", "convert.hp->mw", "convert.hz->khz", "convert.hz->mhz", "convert.hz->ghz", "convert.khz->hz", "convert.khz->mhz", "convert.khz->ghz", "convert.mhz->hz", "convert.mhz->khz", "convert.mhz->ghz", "convert.ghz->hz", "convert.ghz->khz", "convert.ghz->mhz", "convert.deg->rad", "convert.deg->grad", "convert.deg->turn", "convert.rad->deg", "convert.rad->grad", "convert.rad->turn", "convert.grad->deg", "convert.grad->rad", "convert.grad->turn", "convert.turn->deg", "convert.turn->rad", "convert.turn->grad", "convert.c->f", "convert.c->k", "convert.f->c", "convert.f->k", "convert.k->c", "convert.k->f"];
31
+ readonly shorthand: ["-short-regexp", "-short-fn"];
32
+ 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-effect", "-type-never"];
33
+ };
34
+ export type CollectionApiName = typeof api.collection[number];
35
+ export type ArrayApiName = typeof api.array[number];
36
+ export type SequenceApiName = typeof api.sequence[number];
37
+ export type MathApiName = typeof api.math[number];
38
+ export type FunctionalApiName = typeof api.functional[number];
39
+ export type MiscApiName = typeof api.misc[number];
40
+ export type MetaApiName = typeof api.meta[number];
41
+ export type ObjectApiName = typeof api.object[number];
42
+ export type PredicateApiName = typeof api.predicate[number];
43
+ export type RegularExpressionApiName = typeof api.regularExpression[number];
44
+ export type SpecialExpressionsApiName = string;
45
+ export type StringApiName = typeof api.string[number];
46
+ export type StringUtilsApiName = typeof api.stringUtils[number];
47
+ export type CollectionUtilsApiName = typeof api.collectionUtils[number];
48
+ export type SequenceUtilsApiName = typeof api.sequenceUtils[number];
49
+ export type BitwiseApiName = typeof api.bitwise[number];
50
+ export type BitwiseUtilsApiName = typeof api.bitwiseUtils[number];
51
+ export type AssertionApiName = typeof api.assertion[number];
52
+ export type AssertionUtilsApiName = typeof api.assertionUtils[number];
53
+ export type GridApiName = typeof api.grid[number];
54
+ export type MatrixApiName = typeof api.matrix[number];
55
+ export type NumberTheoryApiName = typeof api.numberTheory[number];
56
+ export type VectorApiName = typeof api.vector[number];
57
+ export type VectorUtilsApiName = typeof api.vectorUtils[number];
58
+ export type LinAlgApiName = typeof api.linAlg[number];
59
+ export type MathUtilsApiName = typeof api.mathUtils[number];
60
+ export type FunctionalUtilsApiName = typeof api.functionalUtils[number];
61
+ export type ConvertApiName = typeof api.convert[number];
62
+ export type CoreNormalExpressionName = CollectionApiName | ArrayApiName | SequenceApiName | MathApiName | FunctionalApiName | MetaApiName | MiscApiName | ObjectApiName | PredicateApiName | RegularExpressionApiName | StringApiName | BitwiseApiName | VectorApiName | AssertionApiName;
63
+ export type ModuleExpressionName = MatrixApiName | VectorUtilsApiName | LinAlgApiName | GridApiName | NumberTheoryApiName | MathUtilsApiName | FunctionalUtilsApiName | AssertionUtilsApiName | StringUtilsApiName | CollectionUtilsApiName | SequenceUtilsApiName | BitwiseUtilsApiName | ConvertApiName;
64
+ export type NormalExpressionName = CoreNormalExpressionName | ModuleExpressionName;
65
+ export type FunctionName = NormalExpressionName | SpecialExpressionsApiName;
66
+ export type ShorthandName = typeof api.shorthand[number];
67
+ export type DatatypeName = typeof api.datatype[number];
68
+ 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", "take", "take-last", "drop", "drop-last", "take-while", "drop-while", "+", "-", "*", "/", "mod", "%", "quot", "inc", "dec", "sqrt", "cbrt", "^", "round", "trunc", "floor", "ceil", "min", "max", "abs", "sign", "|>", "apply", "identity", "comp", "constantly", "doc", "arity", "effect-name", "effect-matcher", "!=", "==", "<", ">", "<=", ">=", "not", "iso-date->epoch", "epoch->iso-date", "boolean", "compare", "identical?", "json-parse", "json-stringify", "type-of", "dissoc", "keys", "vals", "entries", "find", "merge", "merge-with", "zipmap", "select-keys", "boolean?", "null?", "number?", "string?", "function?", "integer?", "array?", "object?", "collection?", "sequence?", "regexp?", "effect?", "zero?", "pos?", "neg?", "even?", "odd?", "finite?", "negative-infinity?", "positive-infinity?", "false?", "true?", "empty?", "not-empty?", "vector?", "grid?", "matrix?", "regexp", "re-match", "replace", "replace-all", "str", "number", "lower-case", "upper-case", "trim", "split", "join", "blank?", "<<", ">>", ">>>", "&", "|", "xor", "sum", "mean", "median", "prod", "assert", "-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-effect", "-type-never"];
69
+ 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", "take", "take-last", "drop", "drop-last", "take-while", "drop-while", "+", "-", "*", "/", "mod", "%", "quot", "inc", "dec", "sqrt", "cbrt", "^", "round", "trunc", "floor", "ceil", "min", "max", "abs", "sign", "|>", "apply", "identity", "comp", "constantly", "doc", "arity", "effect-name", "effect-matcher", "!=", "==", "<", ">", "<=", ">=", "not", "iso-date->epoch", "epoch->iso-date", "boolean", "compare", "identical?", "json-parse", "json-stringify", "type-of", "dissoc", "keys", "vals", "entries", "find", "merge", "merge-with", "zipmap", "select-keys", "boolean?", "null?", "number?", "string?", "function?", "integer?", "array?", "object?", "collection?", "sequence?", "regexp?", "effect?", "zero?", "pos?", "neg?", "even?", "odd?", "finite?", "negative-infinity?", "positive-infinity?", "false?", "true?", "empty?", "not-empty?", "vector?", "grid?", "matrix?", "regexp", "re-match", "replace", "replace-all", "str", "number", "lower-case", "upper-case", "trim", "split", "join", "blank?", "<<", ">>", ">>>", "&", "|", "xor", "sum", "mean", "median", "prod", "assert", "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?", "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.mode", "vector.min-index", "vector.max-index", "vector.sort-indices", "vector.count-values", "vector.linspace", "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.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, `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.moving-${string}`, `vector.centered-moving-${string}`, `vector.running-${string}`, `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.cell-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.crop", "grid.slice-rows", "grid.slice-cols", "grid.splice-rows", "grid.splice-cols", "grid.concat-rows", "grid.concat-cols", "grid.cell-map", "grid.cell-mapi", "grid.cell-reduce", "grid.cell-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", "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", "assertion.assert=", "assertion.assert!=", "assertion.assert-gt", "assertion.assert-lt", "assertion.assert-gte", "assertion.assert-lte", "assertion.assert-true", "assertion.assert-false", "assertion.assert-truthy", "assertion.assert-falsy", "assertion.assert-null", "assertion.assert-throws", "assertion.assert-throws-error", "assertion.assert-not-throws", "assertion.assert-array", "assertion.assert-boolean", "assertion.assert-collection", "assertion.assert-function", "assertion.assert-grid", "assertion.assert-integer", "assertion.assert-matrix", "assertion.assert-number", "assertion.assert-object", "assertion.assert-regexp", "assertion.assert-sequence", "assertion.assert-string", "assertion.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.unshift", "sequence.splice", "sequence.sort-by", "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", "convert.angstrom->um", "convert.angstrom->mm", "convert.angstrom->cm", "convert.angstrom->m", "convert.angstrom->km", "convert.angstrom->in", "convert.angstrom->ft", "convert.angstrom->yd", "convert.angstrom->mi", "convert.angstrom->nmi", "convert.um->angstrom", "convert.um->mm", "convert.um->cm", "convert.um->m", "convert.um->km", "convert.um->in", "convert.um->ft", "convert.um->yd", "convert.um->mi", "convert.um->nmi", "convert.mm->angstrom", "convert.mm->um", "convert.mm->cm", "convert.mm->m", "convert.mm->km", "convert.mm->in", "convert.mm->ft", "convert.mm->yd", "convert.mm->mi", "convert.mm->nmi", "convert.cm->angstrom", "convert.cm->um", "convert.cm->mm", "convert.cm->m", "convert.cm->km", "convert.cm->in", "convert.cm->ft", "convert.cm->yd", "convert.cm->mi", "convert.cm->nmi", "convert.m->angstrom", "convert.m->um", "convert.m->mm", "convert.m->cm", "convert.m->km", "convert.m->in", "convert.m->ft", "convert.m->yd", "convert.m->mi", "convert.m->nmi", "convert.km->angstrom", "convert.km->um", "convert.km->mm", "convert.km->cm", "convert.km->m", "convert.km->in", "convert.km->ft", "convert.km->yd", "convert.km->mi", "convert.km->nmi", "convert.in->angstrom", "convert.in->um", "convert.in->mm", "convert.in->cm", "convert.in->m", "convert.in->km", "convert.in->ft", "convert.in->yd", "convert.in->mi", "convert.in->nmi", "convert.ft->angstrom", "convert.ft->um", "convert.ft->mm", "convert.ft->cm", "convert.ft->m", "convert.ft->km", "convert.ft->in", "convert.ft->yd", "convert.ft->mi", "convert.ft->nmi", "convert.yd->angstrom", "convert.yd->um", "convert.yd->mm", "convert.yd->cm", "convert.yd->m", "convert.yd->km", "convert.yd->in", "convert.yd->ft", "convert.yd->mi", "convert.yd->nmi", "convert.mi->angstrom", "convert.mi->um", "convert.mi->mm", "convert.mi->cm", "convert.mi->m", "convert.mi->km", "convert.mi->in", "convert.mi->ft", "convert.mi->yd", "convert.mi->nmi", "convert.nmi->angstrom", "convert.nmi->um", "convert.nmi->mm", "convert.nmi->cm", "convert.nmi->m", "convert.nmi->km", "convert.nmi->in", "convert.nmi->ft", "convert.nmi->yd", "convert.nmi->mi", "convert.mg->g", "convert.mg->kg", "convert.mg->t", "convert.mg->oz", "convert.mg->lb", "convert.mg->st", "convert.g->mg", "convert.g->kg", "convert.g->t", "convert.g->oz", "convert.g->lb", "convert.g->st", "convert.kg->mg", "convert.kg->g", "convert.kg->t", "convert.kg->oz", "convert.kg->lb", "convert.kg->st", "convert.t->mg", "convert.t->g", "convert.t->kg", "convert.t->oz", "convert.t->lb", "convert.t->st", "convert.oz->mg", "convert.oz->g", "convert.oz->kg", "convert.oz->t", "convert.oz->lb", "convert.oz->st", "convert.lb->mg", "convert.lb->g", "convert.lb->kg", "convert.lb->t", "convert.lb->oz", "convert.lb->st", "convert.st->mg", "convert.st->g", "convert.st->kg", "convert.st->t", "convert.st->oz", "convert.st->lb", "convert.ml->cl", "convert.ml->dl", "convert.ml->l", "convert.ml->tsp", "convert.ml->tbsp", "convert.ml->fl-oz", "convert.ml->cup", "convert.ml->pt", "convert.ml->qt", "convert.ml->gal", "convert.cl->ml", "convert.cl->dl", "convert.cl->l", "convert.cl->tsp", "convert.cl->tbsp", "convert.cl->fl-oz", "convert.cl->cup", "convert.cl->pt", "convert.cl->qt", "convert.cl->gal", "convert.dl->ml", "convert.dl->cl", "convert.dl->l", "convert.dl->tsp", "convert.dl->tbsp", "convert.dl->fl-oz", "convert.dl->cup", "convert.dl->pt", "convert.dl->qt", "convert.dl->gal", "convert.l->ml", "convert.l->cl", "convert.l->dl", "convert.l->tsp", "convert.l->tbsp", "convert.l->fl-oz", "convert.l->cup", "convert.l->pt", "convert.l->qt", "convert.l->gal", "convert.tsp->ml", "convert.tsp->cl", "convert.tsp->dl", "convert.tsp->l", "convert.tsp->tbsp", "convert.tsp->fl-oz", "convert.tsp->cup", "convert.tsp->pt", "convert.tsp->qt", "convert.tsp->gal", "convert.tbsp->ml", "convert.tbsp->cl", "convert.tbsp->dl", "convert.tbsp->l", "convert.tbsp->tsp", "convert.tbsp->fl-oz", "convert.tbsp->cup", "convert.tbsp->pt", "convert.tbsp->qt", "convert.tbsp->gal", "convert.fl-oz->ml", "convert.fl-oz->cl", "convert.fl-oz->dl", "convert.fl-oz->l", "convert.fl-oz->tsp", "convert.fl-oz->tbsp", "convert.fl-oz->cup", "convert.fl-oz->pt", "convert.fl-oz->qt", "convert.fl-oz->gal", "convert.cup->ml", "convert.cup->cl", "convert.cup->dl", "convert.cup->l", "convert.cup->tsp", "convert.cup->tbsp", "convert.cup->fl-oz", "convert.cup->pt", "convert.cup->qt", "convert.cup->gal", "convert.pt->ml", "convert.pt->cl", "convert.pt->dl", "convert.pt->l", "convert.pt->tsp", "convert.pt->tbsp", "convert.pt->fl-oz", "convert.pt->cup", "convert.pt->qt", "convert.pt->gal", "convert.qt->ml", "convert.qt->cl", "convert.qt->dl", "convert.qt->l", "convert.qt->tsp", "convert.qt->tbsp", "convert.qt->fl-oz", "convert.qt->cup", "convert.qt->pt", "convert.qt->gal", "convert.gal->ml", "convert.gal->cl", "convert.gal->dl", "convert.gal->l", "convert.gal->tsp", "convert.gal->tbsp", "convert.gal->fl-oz", "convert.gal->cup", "convert.gal->pt", "convert.gal->qt", "convert.ms->s", "convert.ms->min", "convert.ms->h", "convert.ms->day", "convert.ms->week", "convert.s->ms", "convert.s->min", "convert.s->h", "convert.s->day", "convert.s->week", "convert.min->ms", "convert.min->s", "convert.min->h", "convert.min->day", "convert.min->week", "convert.h->ms", "convert.h->s", "convert.h->min", "convert.h->day", "convert.h->week", "convert.day->ms", "convert.day->s", "convert.day->min", "convert.day->h", "convert.day->week", "convert.week->ms", "convert.week->s", "convert.week->min", "convert.week->h", "convert.week->day", "convert.mm2->cm2", "convert.mm2->m2", "convert.mm2->km2", "convert.mm2->in2", "convert.mm2->ft2", "convert.mm2->yd2", "convert.mm2->acre", "convert.mm2->hectare", "convert.cm2->mm2", "convert.cm2->m2", "convert.cm2->km2", "convert.cm2->in2", "convert.cm2->ft2", "convert.cm2->yd2", "convert.cm2->acre", "convert.cm2->hectare", "convert.m2->mm2", "convert.m2->cm2", "convert.m2->km2", "convert.m2->in2", "convert.m2->ft2", "convert.m2->yd2", "convert.m2->acre", "convert.m2->hectare", "convert.km2->mm2", "convert.km2->cm2", "convert.km2->m2", "convert.km2->in2", "convert.km2->ft2", "convert.km2->yd2", "convert.km2->acre", "convert.km2->hectare", "convert.in2->mm2", "convert.in2->cm2", "convert.in2->m2", "convert.in2->km2", "convert.in2->ft2", "convert.in2->yd2", "convert.in2->acre", "convert.in2->hectare", "convert.ft2->mm2", "convert.ft2->cm2", "convert.ft2->m2", "convert.ft2->km2", "convert.ft2->in2", "convert.ft2->yd2", "convert.ft2->acre", "convert.ft2->hectare", "convert.yd2->mm2", "convert.yd2->cm2", "convert.yd2->m2", "convert.yd2->km2", "convert.yd2->in2", "convert.yd2->ft2", "convert.yd2->acre", "convert.yd2->hectare", "convert.acre->mm2", "convert.acre->cm2", "convert.acre->m2", "convert.acre->km2", "convert.acre->in2", "convert.acre->ft2", "convert.acre->yd2", "convert.acre->hectare", "convert.hectare->mm2", "convert.hectare->cm2", "convert.hectare->m2", "convert.hectare->km2", "convert.hectare->in2", "convert.hectare->ft2", "convert.hectare->yd2", "convert.hectare->acre", "convert.m/s->km/h", "convert.m/s->mph", "convert.m/s->kn", "convert.m/s->ft/s", "convert.km/h->m/s", "convert.km/h->mph", "convert.km/h->kn", "convert.km/h->ft/s", "convert.mph->m/s", "convert.mph->km/h", "convert.mph->kn", "convert.mph->ft/s", "convert.kn->m/s", "convert.kn->km/h", "convert.kn->mph", "convert.kn->ft/s", "convert.ft/s->m/s", "convert.ft/s->km/h", "convert.ft/s->mph", "convert.ft/s->kn", "convert.b->kb", "convert.b->mb", "convert.b->gb", "convert.b->tb", "convert.b->pb", "convert.kb->b", "convert.kb->mb", "convert.kb->gb", "convert.kb->tb", "convert.kb->pb", "convert.mb->b", "convert.mb->kb", "convert.mb->gb", "convert.mb->tb", "convert.mb->pb", "convert.gb->b", "convert.gb->kb", "convert.gb->mb", "convert.gb->tb", "convert.gb->pb", "convert.tb->b", "convert.tb->kb", "convert.tb->mb", "convert.tb->gb", "convert.tb->pb", "convert.pb->b", "convert.pb->kb", "convert.pb->mb", "convert.pb->gb", "convert.pb->tb", "convert.pa->kpa", "convert.pa->bar", "convert.pa->atm", "convert.pa->psi", "convert.pa->mmhg", "convert.kpa->pa", "convert.kpa->bar", "convert.kpa->atm", "convert.kpa->psi", "convert.kpa->mmhg", "convert.bar->pa", "convert.bar->kpa", "convert.bar->atm", "convert.bar->psi", "convert.bar->mmhg", "convert.atm->pa", "convert.atm->kpa", "convert.atm->bar", "convert.atm->psi", "convert.atm->mmhg", "convert.psi->pa", "convert.psi->kpa", "convert.psi->bar", "convert.psi->atm", "convert.psi->mmhg", "convert.mmhg->pa", "convert.mmhg->kpa", "convert.mmhg->bar", "convert.mmhg->atm", "convert.mmhg->psi", "convert.j->kj", "convert.j->cal", "convert.j->kcal", "convert.j->wh", "convert.j->kwh", "convert.j->btu", "convert.kj->j", "convert.kj->cal", "convert.kj->kcal", "convert.kj->wh", "convert.kj->kwh", "convert.kj->btu", "convert.cal->j", "convert.cal->kj", "convert.cal->kcal", "convert.cal->wh", "convert.cal->kwh", "convert.cal->btu", "convert.kcal->j", "convert.kcal->kj", "convert.kcal->cal", "convert.kcal->wh", "convert.kcal->kwh", "convert.kcal->btu", "convert.wh->j", "convert.wh->kj", "convert.wh->cal", "convert.wh->kcal", "convert.wh->kwh", "convert.wh->btu", "convert.kwh->j", "convert.kwh->kj", "convert.kwh->cal", "convert.kwh->kcal", "convert.kwh->wh", "convert.kwh->btu", "convert.btu->j", "convert.btu->kj", "convert.btu->cal", "convert.btu->kcal", "convert.btu->wh", "convert.btu->kwh", "convert.w->kw", "convert.w->mw", "convert.w->hp", "convert.kw->w", "convert.kw->mw", "convert.kw->hp", "convert.mw->w", "convert.mw->kw", "convert.mw->hp", "convert.hp->w", "convert.hp->kw", "convert.hp->mw", "convert.hz->khz", "convert.hz->mhz", "convert.hz->ghz", "convert.khz->hz", "convert.khz->mhz", "convert.khz->ghz", "convert.mhz->hz", "convert.mhz->khz", "convert.mhz->ghz", "convert.ghz->hz", "convert.ghz->khz", "convert.ghz->mhz", "convert.deg->rad", "convert.deg->grad", "convert.deg->turn", "convert.rad->deg", "convert.rad->grad", "convert.rad->turn", "convert.grad->deg", "convert.grad->rad", "convert.grad->turn", "convert.turn->deg", "convert.turn->rad", "convert.turn->grad", "convert.c->f", "convert.c->k", "convert.f->c", "convert.f->k", "convert.k->c", "convert.k->f", "-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-effect", "-type-never"];
70
+ export type CoreApiName = typeof coreApiNames[number];
71
+ export type ApiName = typeof apiNames[number];
72
+ export declare function isApiName(arg: string): arg is ApiName;
73
+ export declare function isCoreApiName(arg: string): arg is CoreApiName;
@@ -0,0 +1,3 @@
1
+ import type { DatatypeName } from './api';
2
+ import type { DatatypeReference } from '.';
3
+ export declare const datatype: Record<DatatypeName, DatatypeReference>;
@@ -0,0 +1,11 @@
1
+ export interface Example {
2
+ id: string;
3
+ name: string;
4
+ description: string;
5
+ code: string;
6
+ context?: {
7
+ bindings?: Record<string, unknown>;
8
+ effectHandlers?: Record<string, string>;
9
+ };
10
+ }
11
+ export declare const examples: Example[];