@mojir/dvala 0.0.7 → 0.0.9

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 (316) hide show
  1. package/dist/cli/cli.js +1553 -1599
  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 +5 -5
  9. package/dist/cli/src/evaluator/trampoline.d.ts +10 -1
  10. package/dist/cli/src/parser/subParsers/parseDo.d.ts +1 -1
  11. package/dist/cli/src/tokenizer/token.d.ts +2 -4
  12. package/dist/cli/src/tokenizer/tokenize.d.ts +1 -2
  13. package/dist/cli/src/tokenizer/tokenizers.d.ts +2 -3
  14. package/dist/cli/src/tooling.d.ts +51 -0
  15. package/dist/debug.esm.js +1 -1
  16. package/dist/debug.esm.js.map +1 -1
  17. package/dist/debug.js +1 -1
  18. package/dist/debug.js.map +1 -1
  19. package/dist/dvala.iife.js +1 -1
  20. package/dist/dvala.iife.js.map +1 -1
  21. package/dist/full.esm.js +1 -1
  22. package/dist/full.esm.js.map +1 -1
  23. package/dist/full.js +1 -1
  24. package/dist/full.js.map +1 -1
  25. package/dist/index.esm.js +1 -1
  26. package/dist/index.esm.js.map +1 -1
  27. package/dist/index.js +1 -1
  28. package/dist/index.js.map +1 -1
  29. package/dist/mcp-server/common/utils.d.ts +2 -0
  30. package/dist/mcp-server/mcp-server/src/server.d.ts +1 -0
  31. package/dist/mcp-server/reference/api.d.ts +73 -0
  32. package/dist/mcp-server/reference/datatype.d.ts +3 -0
  33. package/dist/mcp-server/reference/examples.d.ts +11 -0
  34. package/dist/mcp-server/reference/index.d.ts +195 -0
  35. package/dist/mcp-server/reference/shorthand.d.ts +3 -0
  36. package/dist/mcp-server/server.js +36330 -0
  37. package/dist/mcp-server/src/AutoCompleter/AutoCompleter.d.ts +27 -0
  38. package/dist/{src/Dvala → mcp-server/src}/Cache.d.ts +1 -1
  39. package/dist/mcp-server/src/allModules.d.ts +2 -0
  40. package/dist/mcp-server/src/builtin/bindingNode.d.ts +11 -0
  41. package/dist/mcp-server/src/builtin/core/array.d.ts +2 -0
  42. package/dist/mcp-server/src/builtin/core/assertion.d.ts +2 -0
  43. package/dist/mcp-server/src/builtin/core/bitwise.d.ts +2 -0
  44. package/dist/mcp-server/src/builtin/core/collection.d.ts +2 -0
  45. package/dist/mcp-server/src/builtin/core/functional.d.ts +2 -0
  46. package/dist/mcp-server/src/builtin/core/math.d.ts +2 -0
  47. package/dist/mcp-server/src/builtin/core/meta.d.ts +3 -0
  48. package/dist/mcp-server/src/builtin/core/misc.d.ts +2 -0
  49. package/dist/mcp-server/src/builtin/core/object.d.ts +2 -0
  50. package/dist/mcp-server/src/builtin/core/predicates.d.ts +2 -0
  51. package/dist/mcp-server/src/builtin/core/regexp.d.ts +2 -0
  52. package/dist/mcp-server/src/builtin/core/sequence.d.ts +2 -0
  53. package/dist/mcp-server/src/builtin/core/string.d.ts +2 -0
  54. package/dist/mcp-server/src/builtin/core/vector.d.ts +2 -0
  55. package/dist/mcp-server/src/builtin/index.d.ts +13 -0
  56. package/dist/mcp-server/src/builtin/interface.d.ts +113 -0
  57. package/dist/mcp-server/src/builtin/modules/assertion/docs.d.ts +2 -0
  58. package/dist/mcp-server/src/builtin/modules/assertion/index.d.ts +2 -0
  59. package/dist/mcp-server/src/builtin/modules/bitwise/index.d.ts +2 -0
  60. package/dist/mcp-server/src/builtin/modules/collection/index.d.ts +2 -0
  61. package/dist/mcp-server/src/builtin/modules/convert/index.d.ts +2 -0
  62. package/dist/mcp-server/src/builtin/modules/functional/index.d.ts +2 -0
  63. package/dist/mcp-server/src/builtin/modules/grid/docs.d.ts +2 -0
  64. package/dist/mcp-server/src/builtin/modules/grid/fromArray.d.ts +8 -0
  65. package/dist/mcp-server/src/builtin/modules/grid/index.d.ts +2 -0
  66. package/dist/mcp-server/src/builtin/modules/grid/transpose.d.ts +2 -0
  67. package/dist/mcp-server/src/builtin/modules/interface.d.ts +28 -0
  68. package/dist/mcp-server/src/builtin/modules/linear-algebra/docs.d.ts +2 -0
  69. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/calcFractionalRanks.d.ts +1 -0
  70. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/collinear.d.ts +2 -0
  71. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/corrleation.d.ts +8 -0
  72. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/covariance.d.ts +4 -0
  73. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/dot.d.ts +1 -0
  74. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/gaussJordanElimination.d.ts +7 -0
  75. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/getUnit.d.ts +2 -0
  76. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/isZeroVector.d.ts +1 -0
  77. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/kendallTau.d.ts +10 -0
  78. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/length.d.ts +1 -0
  79. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/pearsonCorr.d.ts +1 -0
  80. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/scale.d.ts +1 -0
  81. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/solve.d.ts +8 -0
  82. package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/subtract.d.ts +1 -0
  83. package/dist/mcp-server/src/builtin/modules/linear-algebra/index.d.ts +4 -0
  84. package/dist/mcp-server/src/builtin/modules/math/index.d.ts +2 -0
  85. package/dist/mcp-server/src/builtin/modules/matrix/docs.d.ts +2 -0
  86. package/dist/mcp-server/src/builtin/modules/matrix/helpers/adjugate.d.ts +1 -0
  87. package/dist/mcp-server/src/builtin/modules/matrix/helpers/band.d.ts +9 -0
  88. package/dist/mcp-server/src/builtin/modules/matrix/helpers/cofactor.d.ts +1 -0
  89. package/dist/mcp-server/src/builtin/modules/matrix/helpers/determinant.d.ts +6 -0
  90. package/dist/mcp-server/src/builtin/modules/matrix/helpers/inverse.d.ts +6 -0
  91. package/dist/mcp-server/src/builtin/modules/matrix/helpers/isBanded.d.ts +11 -0
  92. package/dist/mcp-server/src/builtin/modules/matrix/helpers/isDiagonal.d.ts +10 -0
  93. package/dist/mcp-server/src/builtin/modules/matrix/helpers/isIdentity.d.ts +1 -0
  94. package/dist/mcp-server/src/builtin/modules/matrix/helpers/isOrthogonal.d.ts +1 -0
  95. package/dist/mcp-server/src/builtin/modules/matrix/helpers/isSquare.d.ts +1 -0
  96. package/dist/mcp-server/src/builtin/modules/matrix/helpers/isSymetric.d.ts +8 -0
  97. package/dist/mcp-server/src/builtin/modules/matrix/helpers/isTriangular.d.ts +13 -0
  98. package/dist/mcp-server/src/builtin/modules/matrix/helpers/matrixMultiply.d.ts +7 -0
  99. package/dist/mcp-server/src/builtin/modules/matrix/helpers/minor.d.ts +1 -0
  100. package/dist/mcp-server/src/builtin/modules/matrix/helpers/norm1.d.ts +1 -0
  101. package/dist/mcp-server/src/builtin/modules/matrix/helpers/trace.d.ts +8 -0
  102. package/dist/mcp-server/src/builtin/modules/matrix/index.d.ts +4 -0
  103. package/dist/mcp-server/src/builtin/modules/number-theory/binomialCefficient.d.ts +1 -0
  104. package/dist/mcp-server/src/builtin/modules/number-theory/combinations.d.ts +2 -0
  105. package/dist/mcp-server/src/builtin/modules/number-theory/derangements.d.ts +2 -0
  106. package/dist/mcp-server/src/builtin/modules/number-theory/divisors.d.ts +4 -0
  107. package/dist/mcp-server/src/builtin/modules/number-theory/docs.d.ts +2 -0
  108. package/dist/mcp-server/src/builtin/modules/number-theory/factorial.d.ts +3 -0
  109. package/dist/mcp-server/src/builtin/modules/number-theory/index.d.ts +4 -0
  110. package/dist/mcp-server/src/builtin/modules/number-theory/partitions.d.ts +2 -0
  111. package/dist/mcp-server/src/builtin/modules/number-theory/permutations.d.ts +2 -0
  112. package/dist/mcp-server/src/builtin/modules/number-theory/powerSet.d.ts +2 -0
  113. package/dist/mcp-server/src/builtin/modules/number-theory/primeFactors.d.ts +11 -0
  114. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/abundant.d.ts +2 -0
  115. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/arithmetic.d.ts +2 -0
  116. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/bell.d.ts +1 -0
  117. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/bernoulli.d.ts +2 -0
  118. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/catalan.d.ts +1 -0
  119. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/collatz.d.ts +2 -0
  120. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/composite.d.ts +3 -0
  121. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/deficient.d.ts +2 -0
  122. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/factorial.d.ts +1 -0
  123. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/fibonacci.d.ts +1 -0
  124. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/geometric.d.ts +2 -0
  125. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/golomb.d.ts +2 -0
  126. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/happy.d.ts +2 -0
  127. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/index.d.ts +27 -0
  128. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/juggler.d.ts +2 -0
  129. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/lookAndSay.d.ts +2 -0
  130. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/lucas.d.ts +1 -0
  131. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/lucky.d.ts +2 -0
  132. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/mersenne.d.ts +1 -0
  133. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/padovan.d.ts +2 -0
  134. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/partition.d.ts +1 -0
  135. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/pell.d.ts +1 -0
  136. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/perfect.d.ts +1 -0
  137. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/perfectCube.d.ts +2 -0
  138. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/perfectPower.d.ts +10 -0
  139. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/perfectSquare.d.ts +2 -0
  140. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/poligonal.d.ts +2 -0
  141. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/prime.d.ts +3 -0
  142. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/recaman.d.ts +9 -0
  143. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/sylvester.d.ts +1 -0
  144. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/thueMorse.d.ts +2 -0
  145. package/dist/mcp-server/src/builtin/modules/number-theory/sequences/tribonacci.d.ts +1 -0
  146. package/dist/mcp-server/src/builtin/modules/sequence/index.d.ts +2 -0
  147. package/dist/mcp-server/src/builtin/modules/string/index.d.ts +2 -0
  148. package/dist/mcp-server/src/builtin/modules/vector/bincount.d.ts +9 -0
  149. package/dist/mcp-server/src/builtin/modules/vector/calcMad.d.ts +1 -0
  150. package/dist/mcp-server/src/builtin/modules/vector/calcMean.d.ts +1 -0
  151. package/dist/mcp-server/src/builtin/modules/vector/calcMedad.d.ts +1 -0
  152. package/dist/mcp-server/src/builtin/modules/vector/calcMedian.d.ts +1 -0
  153. package/dist/mcp-server/src/builtin/modules/vector/calcStdDev.d.ts +2 -0
  154. package/dist/mcp-server/src/builtin/modules/vector/calcVariance.d.ts +2 -0
  155. package/dist/mcp-server/src/builtin/modules/vector/docs.d.ts +2 -0
  156. package/dist/mcp-server/src/builtin/modules/vector/entropy.d.ts +8 -0
  157. package/dist/mcp-server/src/builtin/modules/vector/histogram.d.ts +9 -0
  158. package/dist/mcp-server/src/builtin/modules/vector/index.d.ts +2 -0
  159. package/dist/mcp-server/src/builtin/modules/vector/mode.d.ts +6 -0
  160. package/dist/mcp-server/src/builtin/modules/vector/outliers.d.ts +7 -0
  161. package/dist/mcp-server/src/builtin/modules/vector/percentile.d.ts +7 -0
  162. package/dist/mcp-server/src/builtin/modules/vector/quartiles.d.ts +1 -0
  163. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/entropy.d.ts +2 -0
  164. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/giniCoefficient.d.ts +2 -0
  165. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/index.d.ts +13 -0
  166. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/iqr.d.ts +2 -0
  167. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/kurtosis.d.ts +5 -0
  168. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/mad.d.ts +2 -0
  169. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/mean.d.ts +4 -0
  170. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/medad.d.ts +2 -0
  171. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/median.d.ts +2 -0
  172. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/prod.d.ts +2 -0
  173. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/rms.d.ts +2 -0
  174. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/skewness.d.ts +3 -0
  175. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/span.d.ts +2 -0
  176. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/standardDeviation.d.ts +3 -0
  177. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/sum.d.ts +2 -0
  178. package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/variance.d.ts +3 -0
  179. package/dist/mcp-server/src/builtin/normalExpressions/index.d.ts +9 -0
  180. package/dist/mcp-server/src/builtin/normalExpressions/initCoreDvala.d.ts +1 -0
  181. package/dist/mcp-server/src/builtin/specialExpressionTypes.d.ts +24 -0
  182. package/dist/mcp-server/src/builtin/specialExpressions/and.d.ts +6 -0
  183. package/dist/mcp-server/src/builtin/specialExpressions/array.d.ts +6 -0
  184. package/dist/mcp-server/src/builtin/specialExpressions/block.d.ts +7 -0
  185. package/dist/mcp-server/src/builtin/specialExpressions/cond.d.ts +6 -0
  186. package/dist/mcp-server/src/builtin/specialExpressions/defined.d.ts +5 -0
  187. package/dist/mcp-server/src/builtin/specialExpressions/effect.d.ts +5 -0
  188. package/dist/mcp-server/src/builtin/specialExpressions/functions.d.ts +6 -0
  189. package/dist/mcp-server/src/builtin/specialExpressions/if.d.ts +6 -0
  190. package/dist/mcp-server/src/builtin/specialExpressions/import.d.ts +6 -0
  191. package/dist/mcp-server/src/builtin/specialExpressions/let.d.ts +6 -0
  192. package/dist/mcp-server/src/builtin/specialExpressions/loop.d.ts +6 -0
  193. package/dist/mcp-server/src/builtin/specialExpressions/loops.d.ts +9 -0
  194. package/dist/mcp-server/src/builtin/specialExpressions/match.d.ts +7 -0
  195. package/dist/mcp-server/src/builtin/specialExpressions/object.d.ts +6 -0
  196. package/dist/mcp-server/src/builtin/specialExpressions/or.d.ts +6 -0
  197. package/dist/mcp-server/src/builtin/specialExpressions/parallel.d.ts +6 -0
  198. package/dist/mcp-server/src/builtin/specialExpressions/perform.d.ts +6 -0
  199. package/dist/mcp-server/src/builtin/specialExpressions/qq.d.ts +6 -0
  200. package/dist/mcp-server/src/builtin/specialExpressions/race.d.ts +6 -0
  201. package/dist/mcp-server/src/builtin/specialExpressions/recur.d.ts +5 -0
  202. package/dist/mcp-server/src/builtin/specialExpressions/unless.d.ts +6 -0
  203. package/dist/mcp-server/src/builtin/utils.d.ts +6 -0
  204. package/dist/mcp-server/src/bundler/interface.d.ts +15 -0
  205. package/dist/mcp-server/src/constants/constants.d.ts +19 -0
  206. package/dist/mcp-server/src/createDvala.d.ts +47 -0
  207. package/dist/mcp-server/src/errors.d.ts +24 -0
  208. package/dist/mcp-server/src/evaluator/ContextStack.d.ts +70 -0
  209. package/dist/mcp-server/src/evaluator/contentHash.d.ts +21 -0
  210. package/dist/mcp-server/src/evaluator/dedupSubTrees.d.ts +37 -0
  211. package/dist/mcp-server/src/evaluator/effectRef.d.ts +27 -0
  212. package/dist/mcp-server/src/evaluator/effectTypes.d.ts +181 -0
  213. package/dist/mcp-server/src/evaluator/frames.d.ts +513 -0
  214. package/dist/mcp-server/src/evaluator/interface.d.ts +14 -0
  215. package/dist/mcp-server/src/evaluator/standardEffects.d.ts +50 -0
  216. package/dist/mcp-server/src/evaluator/step.d.ts +175 -0
  217. package/dist/mcp-server/src/evaluator/suspension.d.ts +86 -0
  218. package/dist/mcp-server/src/evaluator/trampoline.d.ts +133 -0
  219. package/dist/mcp-server/src/getUndefinedSymbols/index.d.ts +7 -0
  220. package/dist/mcp-server/src/initReferenceData.d.ts +1 -0
  221. package/dist/mcp-server/src/interface.d.ts +7 -0
  222. package/dist/mcp-server/src/parser/ParserContext.d.ts +20 -0
  223. package/dist/mcp-server/src/parser/getPrecedence.d.ts +3 -0
  224. package/dist/mcp-server/src/parser/helpers.d.ts +19 -0
  225. package/dist/mcp-server/src/parser/index.d.ts +5 -0
  226. package/dist/mcp-server/src/parser/subParsers/parseArray.d.ts +3 -0
  227. package/dist/mcp-server/src/parser/subParsers/parseBindingTarget.d.ts +8 -0
  228. package/dist/mcp-server/src/parser/subParsers/parseCond.d.ts +4 -0
  229. package/dist/mcp-server/src/parser/subParsers/parseDo.d.ts +3 -0
  230. package/dist/mcp-server/src/parser/subParsers/parseExpression.d.ts +5 -0
  231. package/dist/mcp-server/src/parser/subParsers/parseForOrDoseq.d.ts +4 -0
  232. package/dist/mcp-server/src/parser/subParsers/parseFunction.d.ts +4 -0
  233. package/dist/mcp-server/src/parser/subParsers/parseFunctionCall.d.ts +3 -0
  234. package/dist/mcp-server/src/parser/subParsers/parseIfOrUnless.d.ts +5 -0
  235. package/dist/mcp-server/src/parser/subParsers/parseImplicitBlock.d.ts +5 -0
  236. package/dist/mcp-server/src/parser/subParsers/parseLet.d.ts +4 -0
  237. package/dist/mcp-server/src/parser/subParsers/parseLoop.d.ts +4 -0
  238. package/dist/mcp-server/src/parser/subParsers/parseMatch.d.ts +4 -0
  239. package/dist/mcp-server/src/parser/subParsers/parseNumber.d.ts +3 -0
  240. package/dist/mcp-server/src/parser/subParsers/parseObject.d.ts +3 -0
  241. package/dist/mcp-server/src/parser/subParsers/parseOperand.d.ts +3 -0
  242. package/dist/mcp-server/src/parser/subParsers/parseRegexpShorthand.d.ts +3 -0
  243. package/dist/mcp-server/src/parser/subParsers/parseReservedSymbol.d.ts +3 -0
  244. package/dist/mcp-server/src/parser/subParsers/parseString.d.ts +4 -0
  245. package/dist/mcp-server/src/parser/subParsers/parseSymbol.d.ts +3 -0
  246. package/dist/mcp-server/src/parser/types.d.ts +128 -0
  247. package/dist/mcp-server/src/tokenizer/minifyTokenStream.d.ts +4 -0
  248. package/dist/mcp-server/src/tokenizer/operators.d.ts +12 -0
  249. package/dist/mcp-server/src/tokenizer/reservedNames.d.ts +65 -0
  250. package/dist/mcp-server/src/tokenizer/token.d.ts +82 -0
  251. package/dist/mcp-server/src/tokenizer/tokenize.d.ts +7 -0
  252. package/dist/mcp-server/src/tokenizer/tokenizers.d.ts +13 -0
  253. package/dist/mcp-server/src/tooling.d.ts +51 -0
  254. package/dist/mcp-server/src/transformer/index.d.ts +2 -0
  255. package/dist/mcp-server/src/typeGuards/annotatedCollections.d.ts +16 -0
  256. package/dist/mcp-server/src/typeGuards/array.d.ts +9 -0
  257. package/dist/mcp-server/src/typeGuards/astNode.d.ts +19 -0
  258. package/dist/mcp-server/src/typeGuards/dvala.d.ts +26 -0
  259. package/dist/mcp-server/src/typeGuards/dvalaFunction.d.ts +9 -0
  260. package/dist/mcp-server/src/typeGuards/index.d.ts +7 -0
  261. package/dist/mcp-server/src/typeGuards/number.d.ts +66 -0
  262. package/dist/mcp-server/src/typeGuards/string.d.ts +15 -0
  263. package/dist/mcp-server/src/untokenizer/index.d.ts +2 -0
  264. package/dist/mcp-server/src/utils/arity.d.ts +10 -0
  265. package/dist/mcp-server/src/utils/debug/debugTools.d.ts +1 -0
  266. package/dist/mcp-server/src/utils/debug/getCodeMarker.d.ts +2 -0
  267. package/dist/mcp-server/src/utils/debug/getSourceCodeInfo.d.ts +2 -0
  268. package/dist/mcp-server/src/utils/docString/generateDocString.d.ts +4 -0
  269. package/dist/mcp-server/src/utils/getAssertionError.d.ts +3 -0
  270. package/dist/mcp-server/src/utils/index.d.ts +14 -0
  271. package/dist/mcp-server/src/utils/maybePromise.d.ts +54 -0
  272. package/dist/mcp-server/src/utils/symbols.d.ts +3 -0
  273. package/dist/modules/grid.esm.js +1 -1
  274. package/dist/modules/grid.esm.js.map +1 -1
  275. package/dist/modules/grid.js +1 -1
  276. package/dist/modules/grid.js.map +1 -1
  277. package/dist/modules/reference/index.d.ts +136 -136
  278. package/dist/modules/src/AutoCompleter/AutoCompleter.d.ts +4 -2
  279. package/dist/modules/src/{Dvala/Cache.d.ts → Cache.d.ts} +1 -1
  280. package/dist/modules/src/builtin/specialExpressions/functions.d.ts +1 -1
  281. package/dist/modules/src/createDvala.d.ts +47 -0
  282. package/dist/modules/src/evaluator/ContextStack.d.ts +10 -2
  283. package/dist/modules/src/evaluator/effectTypes.d.ts +5 -5
  284. package/dist/modules/src/evaluator/trampoline.d.ts +10 -1
  285. package/dist/modules/src/index.d.ts +8 -5
  286. package/dist/modules/src/parser/subParsers/parseDo.d.ts +1 -1
  287. package/dist/modules/src/resume.d.ts +41 -0
  288. package/dist/modules/src/tokenizer/token.d.ts +2 -4
  289. package/dist/modules/src/tokenizer/tokenize.d.ts +1 -2
  290. package/dist/modules/src/tokenizer/tokenizers.d.ts +2 -3
  291. package/dist/modules/src/tooling.d.ts +51 -0
  292. package/dist/reference/index.d.ts +136 -136
  293. package/dist/src/AutoCompleter/AutoCompleter.d.ts +4 -2
  294. package/dist/src/Cache.d.ts +16 -0
  295. package/dist/src/builtin/specialExpressions/functions.d.ts +1 -1
  296. package/dist/src/createDvala.d.ts +47 -0
  297. package/dist/src/evaluator/ContextStack.d.ts +10 -2
  298. package/dist/src/evaluator/effectTypes.d.ts +5 -5
  299. package/dist/src/evaluator/trampoline.d.ts +10 -1
  300. package/dist/src/index.d.ts +8 -5
  301. package/dist/src/parser/subParsers/parseDo.d.ts +1 -1
  302. package/dist/src/resume.d.ts +41 -0
  303. package/dist/src/tokenizer/token.d.ts +2 -4
  304. package/dist/src/tokenizer/tokenize.d.ts +1 -2
  305. package/dist/src/tokenizer/tokenizers.d.ts +2 -3
  306. package/dist/src/tooling.d.ts +51 -0
  307. package/dist/testFramework.esm.js +1 -1
  308. package/dist/testFramework.esm.js.map +1 -1
  309. package/dist/testFramework.js +1 -1
  310. package/dist/testFramework.js.map +1 -1
  311. package/package.json +17 -6
  312. package/dist/cli/src/Dvala/Dvala.d.ts +0 -63
  313. package/dist/modules/src/Dvala/Dvala.d.ts +0 -63
  314. package/dist/modules/src/effects.d.ts +0 -110
  315. package/dist/src/Dvala/Dvala.d.ts +0 -63
  316. package/dist/src/effects.d.ts +0 -110
@@ -51,142 +51,142 @@ export declare function isEffectReference<T extends Category>(ref: Reference<T>)
51
51
  export declare const normalExpressionReference: Record<CoreNormalExpressionName, FunctionReference>;
52
52
  export declare const moduleReference: Record<ModuleExpressionName, FunctionReference>;
53
53
  export declare const functionReference: {
54
- number: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
55
- boolean: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
56
- "^": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
57
- "*": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
58
- "/": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
59
- "%": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
60
- "+": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
61
- "-": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
62
- "<<": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
63
- ">>": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
64
- ">>>": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
65
- "++": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
66
- "<": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
67
- "<=": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
68
- ">": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
69
- ">=": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
70
- "==": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
71
- "!=": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
72
- "&": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
73
- xor: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
74
- "|": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
75
- "|>": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
76
- regexp: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
77
- rest: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
78
- min: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
79
- max: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
80
- pop: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
81
- push: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
82
- join: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
83
- reverse: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
84
- slice: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
85
- sort: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
86
- some: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
87
- map: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
88
- filter: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
89
- reduce: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
90
- find: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
91
- entries: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
92
- keys: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
93
- replace: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
94
- split: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
95
- trim: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
96
- repeat: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
97
- assert: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
98
- count: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
99
- first: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
100
- range: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
101
- flatten: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
102
- mapcat: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
103
- "moving-fn": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
104
- "running-fn": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
105
- second: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
106
- get: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
107
- "contains?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
108
- nth: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
109
- "empty?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
110
- "index-of": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
111
- assoc: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
112
- dissoc: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
113
- merge: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
114
- str: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
115
- apply: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
116
- comp: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
117
- identity: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
118
- constantly: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
119
- inc: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
120
- dec: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
121
- quot: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
122
- mod: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
123
- abs: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
124
- trunc: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
125
- sqrt: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
126
- cbrt: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
127
- round: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
128
- floor: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
129
- ceil: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
130
- sign: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
131
- doc: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
132
- arity: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
133
- "identical?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
134
- compare: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
135
- not: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
136
- "epoch->iso-date": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
137
- "iso-date->epoch": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
138
- "boolean?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
139
- "true?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
140
- "false?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
141
- "json-parse": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
142
- "json-stringify": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
143
- "effect-name": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
144
- "effect-matcher": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
145
- "effect?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
146
- "type-of": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
147
- "number?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
148
- "string?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
149
- "null?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
150
- "array?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
151
- "object?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
152
- "function?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
153
- "regexp?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
154
- vals: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
155
- zipmap: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
156
- "select-keys": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
157
- "merge-with": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
158
- "blank?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
159
- "collection?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
160
- "sequence?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
161
- "integer?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
162
- "zero?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
163
- "pos?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
164
- "neg?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
165
- "finite?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
166
- "even?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
167
- "odd?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
168
- "not-empty?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
169
- "vector?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
170
- "matrix?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
171
- "grid?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
172
- "re-match": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
173
- "positive-infinity?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
174
- "negative-infinity?": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
175
- "replace-all": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
176
- last: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
177
- next: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
178
- take: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
179
- drop: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
180
- "take-last": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
181
- "take-while": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
182
- "drop-last": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
183
- "drop-while": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
184
- "lower-case": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
185
- "upper-case": FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
186
- sum: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
187
- prod: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
188
- mean: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
189
- median: FunctionReference<"string" | "object" | "array" | "effect" | "special-expression" | "predicate" | "sequence" | "collection" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype">;
54
+ number: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
55
+ boolean: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
56
+ "^": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
57
+ "*": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
58
+ "/": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
59
+ "%": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
60
+ "+": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
61
+ "-": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
62
+ "<<": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
63
+ ">>": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
64
+ ">>>": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
65
+ "++": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
66
+ "<": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
67
+ "<=": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
68
+ ">": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
69
+ ">=": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
70
+ "==": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
71
+ "!=": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
72
+ "&": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
73
+ xor: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
74
+ "|": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
75
+ "|>": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
76
+ min: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
77
+ max: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
78
+ pop: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
79
+ push: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
80
+ join: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
81
+ reverse: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
82
+ slice: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
83
+ sort: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
84
+ some: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
85
+ map: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
86
+ filter: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
87
+ reduce: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
88
+ find: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
89
+ entries: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
90
+ keys: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
91
+ replace: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
92
+ split: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
93
+ trim: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
94
+ repeat: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
95
+ assert: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
96
+ regexp: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
97
+ count: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
98
+ first: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
99
+ rest: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
100
+ range: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
101
+ flatten: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
102
+ mapcat: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
103
+ "moving-fn": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
104
+ "running-fn": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
105
+ second: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
106
+ get: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
107
+ "contains?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
108
+ nth: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
109
+ "empty?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
110
+ "index-of": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
111
+ assoc: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
112
+ dissoc: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
113
+ merge: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
114
+ str: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
115
+ apply: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
116
+ comp: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
117
+ identity: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
118
+ constantly: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
119
+ inc: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
120
+ dec: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
121
+ quot: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
122
+ mod: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
123
+ abs: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
124
+ trunc: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
125
+ sqrt: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
126
+ cbrt: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
127
+ round: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
128
+ floor: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
129
+ ceil: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
130
+ sign: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
131
+ doc: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
132
+ arity: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
133
+ "identical?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
134
+ compare: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
135
+ not: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
136
+ "epoch->iso-date": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
137
+ "iso-date->epoch": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
138
+ "boolean?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
139
+ "true?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
140
+ "false?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
141
+ "json-parse": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
142
+ "json-stringify": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
143
+ "effect-name": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
144
+ "effect-matcher": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
145
+ "effect?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
146
+ "type-of": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
147
+ "number?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
148
+ "string?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
149
+ "null?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
150
+ "array?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
151
+ "object?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
152
+ "function?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
153
+ "regexp?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
154
+ vals: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
155
+ zipmap: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
156
+ "select-keys": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
157
+ "merge-with": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
158
+ "blank?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
159
+ "collection?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
160
+ "sequence?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
161
+ "integer?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
162
+ "zero?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
163
+ "pos?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
164
+ "neg?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
165
+ "finite?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
166
+ "even?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
167
+ "odd?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
168
+ "not-empty?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
169
+ "vector?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
170
+ "matrix?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
171
+ "grid?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
172
+ "re-match": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
173
+ "positive-infinity?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
174
+ "negative-infinity?": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
175
+ "replace-all": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
176
+ last: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
177
+ next: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
178
+ take: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
179
+ drop: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
180
+ "take-last": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
181
+ "take-while": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
182
+ "drop-last": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
183
+ "drop-while": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
184
+ "lower-case": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
185
+ "upper-case": FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
186
+ sum: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
187
+ prod: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
188
+ mean: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
189
+ median: FunctionReference<"string" | "object" | "special-expression" | "predicate" | "sequence" | "collection" | "array" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "vector" | "linear-algebra" | "matrix" | "grid" | "number-theory" | "convert" | "shorthand" | "datatype" | "effect">;
190
190
  };
191
191
  export declare const apiReference: Record<CoreApiName, Reference>;
192
192
  export declare const effectReference: Record<string, EffectReference>;