@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.
- package/dist/cli/cli.js +1553 -1599
- package/dist/cli/reference/examples.d.ts +1 -1
- package/dist/cli/src/AutoCompleter/AutoCompleter.d.ts +4 -2
- package/dist/cli/src/{Dvala/Cache.d.ts → Cache.d.ts} +1 -1
- package/dist/cli/src/builtin/specialExpressions/functions.d.ts +1 -1
- package/dist/cli/src/createDvala.d.ts +47 -0
- package/dist/cli/src/evaluator/ContextStack.d.ts +10 -2
- package/dist/cli/src/evaluator/effectTypes.d.ts +5 -5
- package/dist/cli/src/evaluator/trampoline.d.ts +10 -1
- package/dist/cli/src/parser/subParsers/parseDo.d.ts +1 -1
- package/dist/cli/src/tokenizer/token.d.ts +2 -4
- package/dist/cli/src/tokenizer/tokenize.d.ts +1 -2
- package/dist/cli/src/tokenizer/tokenizers.d.ts +2 -3
- package/dist/cli/src/tooling.d.ts +51 -0
- package/dist/debug.esm.js +1 -1
- package/dist/debug.esm.js.map +1 -1
- package/dist/debug.js +1 -1
- package/dist/debug.js.map +1 -1
- package/dist/dvala.iife.js +1 -1
- package/dist/dvala.iife.js.map +1 -1
- package/dist/full.esm.js +1 -1
- package/dist/full.esm.js.map +1 -1
- package/dist/full.js +1 -1
- package/dist/full.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/mcp-server/common/utils.d.ts +2 -0
- package/dist/mcp-server/mcp-server/src/server.d.ts +1 -0
- package/dist/mcp-server/reference/api.d.ts +73 -0
- package/dist/mcp-server/reference/datatype.d.ts +3 -0
- package/dist/mcp-server/reference/examples.d.ts +11 -0
- package/dist/mcp-server/reference/index.d.ts +195 -0
- package/dist/mcp-server/reference/shorthand.d.ts +3 -0
- package/dist/mcp-server/server.js +36330 -0
- package/dist/mcp-server/src/AutoCompleter/AutoCompleter.d.ts +27 -0
- package/dist/{src/Dvala → mcp-server/src}/Cache.d.ts +1 -1
- package/dist/mcp-server/src/allModules.d.ts +2 -0
- package/dist/mcp-server/src/builtin/bindingNode.d.ts +11 -0
- package/dist/mcp-server/src/builtin/core/array.d.ts +2 -0
- package/dist/mcp-server/src/builtin/core/assertion.d.ts +2 -0
- package/dist/mcp-server/src/builtin/core/bitwise.d.ts +2 -0
- package/dist/mcp-server/src/builtin/core/collection.d.ts +2 -0
- package/dist/mcp-server/src/builtin/core/functional.d.ts +2 -0
- package/dist/mcp-server/src/builtin/core/math.d.ts +2 -0
- package/dist/mcp-server/src/builtin/core/meta.d.ts +3 -0
- package/dist/mcp-server/src/builtin/core/misc.d.ts +2 -0
- package/dist/mcp-server/src/builtin/core/object.d.ts +2 -0
- package/dist/mcp-server/src/builtin/core/predicates.d.ts +2 -0
- package/dist/mcp-server/src/builtin/core/regexp.d.ts +2 -0
- package/dist/mcp-server/src/builtin/core/sequence.d.ts +2 -0
- package/dist/mcp-server/src/builtin/core/string.d.ts +2 -0
- package/dist/mcp-server/src/builtin/core/vector.d.ts +2 -0
- package/dist/mcp-server/src/builtin/index.d.ts +13 -0
- package/dist/mcp-server/src/builtin/interface.d.ts +113 -0
- package/dist/mcp-server/src/builtin/modules/assertion/docs.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/assertion/index.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/bitwise/index.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/collection/index.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/convert/index.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/functional/index.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/grid/docs.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/grid/fromArray.d.ts +8 -0
- package/dist/mcp-server/src/builtin/modules/grid/index.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/grid/transpose.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/interface.d.ts +28 -0
- package/dist/mcp-server/src/builtin/modules/linear-algebra/docs.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/calcFractionalRanks.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/collinear.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/corrleation.d.ts +8 -0
- package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/covariance.d.ts +4 -0
- package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/dot.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/gaussJordanElimination.d.ts +7 -0
- package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/getUnit.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/isZeroVector.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/kendallTau.d.ts +10 -0
- package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/length.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/pearsonCorr.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/scale.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/solve.d.ts +8 -0
- package/dist/mcp-server/src/builtin/modules/linear-algebra/helpers/subtract.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/linear-algebra/index.d.ts +4 -0
- package/dist/mcp-server/src/builtin/modules/math/index.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/matrix/docs.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/matrix/helpers/adjugate.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/matrix/helpers/band.d.ts +9 -0
- package/dist/mcp-server/src/builtin/modules/matrix/helpers/cofactor.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/matrix/helpers/determinant.d.ts +6 -0
- package/dist/mcp-server/src/builtin/modules/matrix/helpers/inverse.d.ts +6 -0
- package/dist/mcp-server/src/builtin/modules/matrix/helpers/isBanded.d.ts +11 -0
- package/dist/mcp-server/src/builtin/modules/matrix/helpers/isDiagonal.d.ts +10 -0
- package/dist/mcp-server/src/builtin/modules/matrix/helpers/isIdentity.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/matrix/helpers/isOrthogonal.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/matrix/helpers/isSquare.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/matrix/helpers/isSymetric.d.ts +8 -0
- package/dist/mcp-server/src/builtin/modules/matrix/helpers/isTriangular.d.ts +13 -0
- package/dist/mcp-server/src/builtin/modules/matrix/helpers/matrixMultiply.d.ts +7 -0
- package/dist/mcp-server/src/builtin/modules/matrix/helpers/minor.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/matrix/helpers/norm1.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/matrix/helpers/trace.d.ts +8 -0
- package/dist/mcp-server/src/builtin/modules/matrix/index.d.ts +4 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/binomialCefficient.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/combinations.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/derangements.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/divisors.d.ts +4 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/docs.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/factorial.d.ts +3 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/index.d.ts +4 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/partitions.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/permutations.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/powerSet.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/primeFactors.d.ts +11 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/abundant.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/arithmetic.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/bell.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/bernoulli.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/catalan.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/collatz.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/composite.d.ts +3 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/deficient.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/factorial.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/fibonacci.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/geometric.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/golomb.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/happy.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/index.d.ts +27 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/juggler.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/lookAndSay.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/lucas.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/lucky.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/mersenne.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/padovan.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/partition.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/pell.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/perfect.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/perfectCube.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/perfectPower.d.ts +10 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/perfectSquare.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/poligonal.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/prime.d.ts +3 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/recaman.d.ts +9 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/sylvester.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/thueMorse.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/number-theory/sequences/tribonacci.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/sequence/index.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/string/index.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/vector/bincount.d.ts +9 -0
- package/dist/mcp-server/src/builtin/modules/vector/calcMad.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/vector/calcMean.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/vector/calcMedad.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/vector/calcMedian.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/vector/calcStdDev.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/vector/calcVariance.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/vector/docs.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/vector/entropy.d.ts +8 -0
- package/dist/mcp-server/src/builtin/modules/vector/histogram.d.ts +9 -0
- package/dist/mcp-server/src/builtin/modules/vector/index.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/vector/mode.d.ts +6 -0
- package/dist/mcp-server/src/builtin/modules/vector/outliers.d.ts +7 -0
- package/dist/mcp-server/src/builtin/modules/vector/percentile.d.ts +7 -0
- package/dist/mcp-server/src/builtin/modules/vector/quartiles.d.ts +1 -0
- package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/entropy.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/giniCoefficient.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/index.d.ts +13 -0
- package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/iqr.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/kurtosis.d.ts +5 -0
- package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/mad.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/mean.d.ts +4 -0
- package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/medad.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/median.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/prod.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/rms.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/skewness.d.ts +3 -0
- package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/span.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/standardDeviation.d.ts +3 -0
- package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/sum.d.ts +2 -0
- package/dist/mcp-server/src/builtin/modules/vector/reductionFunctions/variance.d.ts +3 -0
- package/dist/mcp-server/src/builtin/normalExpressions/index.d.ts +9 -0
- package/dist/mcp-server/src/builtin/normalExpressions/initCoreDvala.d.ts +1 -0
- package/dist/mcp-server/src/builtin/specialExpressionTypes.d.ts +24 -0
- package/dist/mcp-server/src/builtin/specialExpressions/and.d.ts +6 -0
- package/dist/mcp-server/src/builtin/specialExpressions/array.d.ts +6 -0
- package/dist/mcp-server/src/builtin/specialExpressions/block.d.ts +7 -0
- package/dist/mcp-server/src/builtin/specialExpressions/cond.d.ts +6 -0
- package/dist/mcp-server/src/builtin/specialExpressions/defined.d.ts +5 -0
- package/dist/mcp-server/src/builtin/specialExpressions/effect.d.ts +5 -0
- package/dist/mcp-server/src/builtin/specialExpressions/functions.d.ts +6 -0
- package/dist/mcp-server/src/builtin/specialExpressions/if.d.ts +6 -0
- package/dist/mcp-server/src/builtin/specialExpressions/import.d.ts +6 -0
- package/dist/mcp-server/src/builtin/specialExpressions/let.d.ts +6 -0
- package/dist/mcp-server/src/builtin/specialExpressions/loop.d.ts +6 -0
- package/dist/mcp-server/src/builtin/specialExpressions/loops.d.ts +9 -0
- package/dist/mcp-server/src/builtin/specialExpressions/match.d.ts +7 -0
- package/dist/mcp-server/src/builtin/specialExpressions/object.d.ts +6 -0
- package/dist/mcp-server/src/builtin/specialExpressions/or.d.ts +6 -0
- package/dist/mcp-server/src/builtin/specialExpressions/parallel.d.ts +6 -0
- package/dist/mcp-server/src/builtin/specialExpressions/perform.d.ts +6 -0
- package/dist/mcp-server/src/builtin/specialExpressions/qq.d.ts +6 -0
- package/dist/mcp-server/src/builtin/specialExpressions/race.d.ts +6 -0
- package/dist/mcp-server/src/builtin/specialExpressions/recur.d.ts +5 -0
- package/dist/mcp-server/src/builtin/specialExpressions/unless.d.ts +6 -0
- package/dist/mcp-server/src/builtin/utils.d.ts +6 -0
- package/dist/mcp-server/src/bundler/interface.d.ts +15 -0
- package/dist/mcp-server/src/constants/constants.d.ts +19 -0
- package/dist/mcp-server/src/createDvala.d.ts +47 -0
- package/dist/mcp-server/src/errors.d.ts +24 -0
- package/dist/mcp-server/src/evaluator/ContextStack.d.ts +70 -0
- package/dist/mcp-server/src/evaluator/contentHash.d.ts +21 -0
- package/dist/mcp-server/src/evaluator/dedupSubTrees.d.ts +37 -0
- package/dist/mcp-server/src/evaluator/effectRef.d.ts +27 -0
- package/dist/mcp-server/src/evaluator/effectTypes.d.ts +181 -0
- package/dist/mcp-server/src/evaluator/frames.d.ts +513 -0
- package/dist/mcp-server/src/evaluator/interface.d.ts +14 -0
- package/dist/mcp-server/src/evaluator/standardEffects.d.ts +50 -0
- package/dist/mcp-server/src/evaluator/step.d.ts +175 -0
- package/dist/mcp-server/src/evaluator/suspension.d.ts +86 -0
- package/dist/mcp-server/src/evaluator/trampoline.d.ts +133 -0
- package/dist/mcp-server/src/getUndefinedSymbols/index.d.ts +7 -0
- package/dist/mcp-server/src/initReferenceData.d.ts +1 -0
- package/dist/mcp-server/src/interface.d.ts +7 -0
- package/dist/mcp-server/src/parser/ParserContext.d.ts +20 -0
- package/dist/mcp-server/src/parser/getPrecedence.d.ts +3 -0
- package/dist/mcp-server/src/parser/helpers.d.ts +19 -0
- package/dist/mcp-server/src/parser/index.d.ts +5 -0
- package/dist/mcp-server/src/parser/subParsers/parseArray.d.ts +3 -0
- package/dist/mcp-server/src/parser/subParsers/parseBindingTarget.d.ts +8 -0
- package/dist/mcp-server/src/parser/subParsers/parseCond.d.ts +4 -0
- package/dist/mcp-server/src/parser/subParsers/parseDo.d.ts +3 -0
- package/dist/mcp-server/src/parser/subParsers/parseExpression.d.ts +5 -0
- package/dist/mcp-server/src/parser/subParsers/parseForOrDoseq.d.ts +4 -0
- package/dist/mcp-server/src/parser/subParsers/parseFunction.d.ts +4 -0
- package/dist/mcp-server/src/parser/subParsers/parseFunctionCall.d.ts +3 -0
- package/dist/mcp-server/src/parser/subParsers/parseIfOrUnless.d.ts +5 -0
- package/dist/mcp-server/src/parser/subParsers/parseImplicitBlock.d.ts +5 -0
- package/dist/mcp-server/src/parser/subParsers/parseLet.d.ts +4 -0
- package/dist/mcp-server/src/parser/subParsers/parseLoop.d.ts +4 -0
- package/dist/mcp-server/src/parser/subParsers/parseMatch.d.ts +4 -0
- package/dist/mcp-server/src/parser/subParsers/parseNumber.d.ts +3 -0
- package/dist/mcp-server/src/parser/subParsers/parseObject.d.ts +3 -0
- package/dist/mcp-server/src/parser/subParsers/parseOperand.d.ts +3 -0
- package/dist/mcp-server/src/parser/subParsers/parseRegexpShorthand.d.ts +3 -0
- package/dist/mcp-server/src/parser/subParsers/parseReservedSymbol.d.ts +3 -0
- package/dist/mcp-server/src/parser/subParsers/parseString.d.ts +4 -0
- package/dist/mcp-server/src/parser/subParsers/parseSymbol.d.ts +3 -0
- package/dist/mcp-server/src/parser/types.d.ts +128 -0
- package/dist/mcp-server/src/tokenizer/minifyTokenStream.d.ts +4 -0
- package/dist/mcp-server/src/tokenizer/operators.d.ts +12 -0
- package/dist/mcp-server/src/tokenizer/reservedNames.d.ts +65 -0
- package/dist/mcp-server/src/tokenizer/token.d.ts +82 -0
- package/dist/mcp-server/src/tokenizer/tokenize.d.ts +7 -0
- package/dist/mcp-server/src/tokenizer/tokenizers.d.ts +13 -0
- package/dist/mcp-server/src/tooling.d.ts +51 -0
- package/dist/mcp-server/src/transformer/index.d.ts +2 -0
- package/dist/mcp-server/src/typeGuards/annotatedCollections.d.ts +16 -0
- package/dist/mcp-server/src/typeGuards/array.d.ts +9 -0
- package/dist/mcp-server/src/typeGuards/astNode.d.ts +19 -0
- package/dist/mcp-server/src/typeGuards/dvala.d.ts +26 -0
- package/dist/mcp-server/src/typeGuards/dvalaFunction.d.ts +9 -0
- package/dist/mcp-server/src/typeGuards/index.d.ts +7 -0
- package/dist/mcp-server/src/typeGuards/number.d.ts +66 -0
- package/dist/mcp-server/src/typeGuards/string.d.ts +15 -0
- package/dist/mcp-server/src/untokenizer/index.d.ts +2 -0
- package/dist/mcp-server/src/utils/arity.d.ts +10 -0
- package/dist/mcp-server/src/utils/debug/debugTools.d.ts +1 -0
- package/dist/mcp-server/src/utils/debug/getCodeMarker.d.ts +2 -0
- package/dist/mcp-server/src/utils/debug/getSourceCodeInfo.d.ts +2 -0
- package/dist/mcp-server/src/utils/docString/generateDocString.d.ts +4 -0
- package/dist/mcp-server/src/utils/getAssertionError.d.ts +3 -0
- package/dist/mcp-server/src/utils/index.d.ts +14 -0
- package/dist/mcp-server/src/utils/maybePromise.d.ts +54 -0
- package/dist/mcp-server/src/utils/symbols.d.ts +3 -0
- package/dist/modules/grid.esm.js +1 -1
- package/dist/modules/grid.esm.js.map +1 -1
- package/dist/modules/grid.js +1 -1
- package/dist/modules/grid.js.map +1 -1
- package/dist/modules/reference/index.d.ts +136 -136
- package/dist/modules/src/AutoCompleter/AutoCompleter.d.ts +4 -2
- package/dist/modules/src/{Dvala/Cache.d.ts → Cache.d.ts} +1 -1
- package/dist/modules/src/builtin/specialExpressions/functions.d.ts +1 -1
- package/dist/modules/src/createDvala.d.ts +47 -0
- package/dist/modules/src/evaluator/ContextStack.d.ts +10 -2
- package/dist/modules/src/evaluator/effectTypes.d.ts +5 -5
- package/dist/modules/src/evaluator/trampoline.d.ts +10 -1
- package/dist/modules/src/index.d.ts +8 -5
- package/dist/modules/src/parser/subParsers/parseDo.d.ts +1 -1
- package/dist/modules/src/resume.d.ts +41 -0
- package/dist/modules/src/tokenizer/token.d.ts +2 -4
- package/dist/modules/src/tokenizer/tokenize.d.ts +1 -2
- package/dist/modules/src/tokenizer/tokenizers.d.ts +2 -3
- package/dist/modules/src/tooling.d.ts +51 -0
- package/dist/reference/index.d.ts +136 -136
- package/dist/src/AutoCompleter/AutoCompleter.d.ts +4 -2
- package/dist/src/Cache.d.ts +16 -0
- package/dist/src/builtin/specialExpressions/functions.d.ts +1 -1
- package/dist/src/createDvala.d.ts +47 -0
- package/dist/src/evaluator/ContextStack.d.ts +10 -2
- package/dist/src/evaluator/effectTypes.d.ts +5 -5
- package/dist/src/evaluator/trampoline.d.ts +10 -1
- package/dist/src/index.d.ts +8 -5
- package/dist/src/parser/subParsers/parseDo.d.ts +1 -1
- package/dist/src/resume.d.ts +41 -0
- package/dist/src/tokenizer/token.d.ts +2 -4
- package/dist/src/tokenizer/tokenize.d.ts +1 -2
- package/dist/src/tokenizer/tokenizers.d.ts +2 -3
- package/dist/src/tooling.d.ts +51 -0
- package/dist/testFramework.esm.js +1 -1
- package/dist/testFramework.esm.js.map +1 -1
- package/dist/testFramework.js +1 -1
- package/dist/testFramework.js.map +1 -1
- package/package.json +17 -6
- package/dist/cli/src/Dvala/Dvala.d.ts +0 -63
- package/dist/modules/src/Dvala/Dvala.d.ts +0 -63
- package/dist/modules/src/effects.d.ts +0 -110
- package/dist/src/Dvala/Dvala.d.ts +0 -63
- 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" | "
|
|
55
|
-
boolean: FunctionReference<"string" | "object" | "
|
|
56
|
-
"^": FunctionReference<"string" | "object" | "
|
|
57
|
-
"*": FunctionReference<"string" | "object" | "
|
|
58
|
-
"/": FunctionReference<"string" | "object" | "
|
|
59
|
-
"%": FunctionReference<"string" | "object" | "
|
|
60
|
-
"+": FunctionReference<"string" | "object" | "
|
|
61
|
-
"-": FunctionReference<"string" | "object" | "
|
|
62
|
-
"<<": FunctionReference<"string" | "object" | "
|
|
63
|
-
">>": FunctionReference<"string" | "object" | "
|
|
64
|
-
">>>": FunctionReference<"string" | "object" | "
|
|
65
|
-
"++": FunctionReference<"string" | "object" | "
|
|
66
|
-
"<": FunctionReference<"string" | "object" | "
|
|
67
|
-
"<=": FunctionReference<"string" | "object" | "
|
|
68
|
-
">": FunctionReference<"string" | "object" | "
|
|
69
|
-
">=": FunctionReference<"string" | "object" | "
|
|
70
|
-
"==": FunctionReference<"string" | "object" | "
|
|
71
|
-
"!=": FunctionReference<"string" | "object" | "
|
|
72
|
-
"&": FunctionReference<"string" | "object" | "
|
|
73
|
-
xor: FunctionReference<"string" | "object" | "
|
|
74
|
-
"|": FunctionReference<"string" | "object" | "
|
|
75
|
-
"|>": FunctionReference<"string" | "object" | "
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
range: FunctionReference<"string" | "object" | "
|
|
101
|
-
flatten: FunctionReference<"string" | "object" | "
|
|
102
|
-
mapcat: FunctionReference<"string" | "object" | "
|
|
103
|
-
"moving-fn": FunctionReference<"string" | "object" | "
|
|
104
|
-
"running-fn": FunctionReference<"string" | "object" | "
|
|
105
|
-
second: FunctionReference<"string" | "object" | "
|
|
106
|
-
get: FunctionReference<"string" | "object" | "
|
|
107
|
-
"contains?": FunctionReference<"string" | "object" | "
|
|
108
|
-
nth: FunctionReference<"string" | "object" | "
|
|
109
|
-
"empty?": FunctionReference<"string" | "object" | "
|
|
110
|
-
"index-of": FunctionReference<"string" | "object" | "
|
|
111
|
-
assoc: FunctionReference<"string" | "object" | "
|
|
112
|
-
dissoc: FunctionReference<"string" | "object" | "
|
|
113
|
-
merge: FunctionReference<"string" | "object" | "
|
|
114
|
-
str: FunctionReference<"string" | "object" | "
|
|
115
|
-
apply: FunctionReference<"string" | "object" | "
|
|
116
|
-
comp: FunctionReference<"string" | "object" | "
|
|
117
|
-
identity: FunctionReference<"string" | "object" | "
|
|
118
|
-
constantly: FunctionReference<"string" | "object" | "
|
|
119
|
-
inc: FunctionReference<"string" | "object" | "
|
|
120
|
-
dec: FunctionReference<"string" | "object" | "
|
|
121
|
-
quot: FunctionReference<"string" | "object" | "
|
|
122
|
-
mod: FunctionReference<"string" | "object" | "
|
|
123
|
-
abs: FunctionReference<"string" | "object" | "
|
|
124
|
-
trunc: FunctionReference<"string" | "object" | "
|
|
125
|
-
sqrt: FunctionReference<"string" | "object" | "
|
|
126
|
-
cbrt: FunctionReference<"string" | "object" | "
|
|
127
|
-
round: FunctionReference<"string" | "object" | "
|
|
128
|
-
floor: FunctionReference<"string" | "object" | "
|
|
129
|
-
ceil: FunctionReference<"string" | "object" | "
|
|
130
|
-
sign: FunctionReference<"string" | "object" | "
|
|
131
|
-
doc: FunctionReference<"string" | "object" | "
|
|
132
|
-
arity: FunctionReference<"string" | "object" | "
|
|
133
|
-
"identical?": FunctionReference<"string" | "object" | "
|
|
134
|
-
compare: FunctionReference<"string" | "object" | "
|
|
135
|
-
not: FunctionReference<"string" | "object" | "
|
|
136
|
-
"epoch->iso-date": FunctionReference<"string" | "object" | "
|
|
137
|
-
"iso-date->epoch": FunctionReference<"string" | "object" | "
|
|
138
|
-
"boolean?": FunctionReference<"string" | "object" | "
|
|
139
|
-
"true?": FunctionReference<"string" | "object" | "
|
|
140
|
-
"false?": FunctionReference<"string" | "object" | "
|
|
141
|
-
"json-parse": FunctionReference<"string" | "object" | "
|
|
142
|
-
"json-stringify": FunctionReference<"string" | "object" | "
|
|
143
|
-
"effect-name": FunctionReference<"string" | "object" | "
|
|
144
|
-
"effect-matcher": FunctionReference<"string" | "object" | "
|
|
145
|
-
"effect?": FunctionReference<"string" | "object" | "
|
|
146
|
-
"type-of": FunctionReference<"string" | "object" | "
|
|
147
|
-
"number?": FunctionReference<"string" | "object" | "
|
|
148
|
-
"string?": FunctionReference<"string" | "object" | "
|
|
149
|
-
"null?": FunctionReference<"string" | "object" | "
|
|
150
|
-
"array?": FunctionReference<"string" | "object" | "
|
|
151
|
-
"object?": FunctionReference<"string" | "object" | "
|
|
152
|
-
"function?": FunctionReference<"string" | "object" | "
|
|
153
|
-
"regexp?": FunctionReference<"string" | "object" | "
|
|
154
|
-
vals: FunctionReference<"string" | "object" | "
|
|
155
|
-
zipmap: FunctionReference<"string" | "object" | "
|
|
156
|
-
"select-keys": FunctionReference<"string" | "object" | "
|
|
157
|
-
"merge-with": FunctionReference<"string" | "object" | "
|
|
158
|
-
"blank?": FunctionReference<"string" | "object" | "
|
|
159
|
-
"collection?": FunctionReference<"string" | "object" | "
|
|
160
|
-
"sequence?": FunctionReference<"string" | "object" | "
|
|
161
|
-
"integer?": FunctionReference<"string" | "object" | "
|
|
162
|
-
"zero?": FunctionReference<"string" | "object" | "
|
|
163
|
-
"pos?": FunctionReference<"string" | "object" | "
|
|
164
|
-
"neg?": FunctionReference<"string" | "object" | "
|
|
165
|
-
"finite?": FunctionReference<"string" | "object" | "
|
|
166
|
-
"even?": FunctionReference<"string" | "object" | "
|
|
167
|
-
"odd?": FunctionReference<"string" | "object" | "
|
|
168
|
-
"not-empty?": FunctionReference<"string" | "object" | "
|
|
169
|
-
"vector?": FunctionReference<"string" | "object" | "
|
|
170
|
-
"matrix?": FunctionReference<"string" | "object" | "
|
|
171
|
-
"grid?": FunctionReference<"string" | "object" | "
|
|
172
|
-
"re-match": FunctionReference<"string" | "object" | "
|
|
173
|
-
"positive-infinity?": FunctionReference<"string" | "object" | "
|
|
174
|
-
"negative-infinity?": FunctionReference<"string" | "object" | "
|
|
175
|
-
"replace-all": FunctionReference<"string" | "object" | "
|
|
176
|
-
last: FunctionReference<"string" | "object" | "
|
|
177
|
-
next: FunctionReference<"string" | "object" | "
|
|
178
|
-
take: FunctionReference<"string" | "object" | "
|
|
179
|
-
drop: FunctionReference<"string" | "object" | "
|
|
180
|
-
"take-last": FunctionReference<"string" | "object" | "
|
|
181
|
-
"take-while": FunctionReference<"string" | "object" | "
|
|
182
|
-
"drop-last": FunctionReference<"string" | "object" | "
|
|
183
|
-
"drop-while": FunctionReference<"string" | "object" | "
|
|
184
|
-
"lower-case": FunctionReference<"string" | "object" | "
|
|
185
|
-
"upper-case": FunctionReference<"string" | "object" | "
|
|
186
|
-
sum: FunctionReference<"string" | "object" | "
|
|
187
|
-
prod: FunctionReference<"string" | "object" | "
|
|
188
|
-
mean: FunctionReference<"string" | "object" | "
|
|
189
|
-
median: FunctionReference<"string" | "object" | "
|
|
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>;
|