import type { ExampleEntry } from '../src/builtin/interface'; import type { Category, CoreApiName, CoreNormalExpressionName, DataType, ModuleExpressionName } from './api'; export interface TypedValue { type: DataType[] | DataType; rest?: true; array?: true; } export type NormalExpressionArgument = TypedValue & { description?: string; }; export type Argument = NormalExpressionArgument; interface Variant { argumentNames: string[]; } export interface CommonReference { title: string; category: T; examples: ExampleEntry[]; description: string; seeAlso?: string[]; } export type FunctionReference = CommonReference & { returns: TypedValue; args: Record; variants: Variant[]; noOperatorDocumentation?: true; _isOperator?: boolean; _prefereOperator?: boolean; }; export type CustomReference = CommonReference & { customVariants: string[]; details?: [string, string, string | undefined][]; }; export interface ShorthandReference extends CommonReference<'shorthand'> { shorthand: true; } export interface DatatypeReference extends CommonReference<'datatype'> { datatype: true; } export interface EffectReference extends CommonReference<'effect' | 'playground-effect'> { effect: true; args: Record; returns: TypedValue; variants: Variant[]; } export type Reference = FunctionReference | CustomReference | ShorthandReference | DatatypeReference | EffectReference; export declare function isFunctionReference(ref: Reference): ref is FunctionReference; export declare function isCustomReference(ref: Reference): ref is CustomReference; export declare function isShorthandReference(ref: Reference): ref is ShorthandReference; export declare function isDatatypeReference(ref: Reference): ref is DatatypeReference; export declare function isEffectReference(ref: Reference): ref is EffectReference; export declare const normalExpressionReference: Record; export declare const moduleReference: Record; export declare const functionReference: { number: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; boolean: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; filter: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; map: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; reduce: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; count: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; get: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; contains: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; assoc: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; "++": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; range: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; repeat: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; flatten: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; nth: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; push: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; pop: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; indexOf: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; some: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; reverse: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; first: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; second: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; last: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; rest: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; next: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; sort: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; slice: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; take: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; takeLast: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; drop: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; dropLast: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; takeWhile: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; dropWhile: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; "+": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; "-": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; "*": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; "/": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; mod: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; "%": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; quot: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; inc: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; dec: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; sqrt: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; cbrt: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; "^": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; round: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; trunc: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; floor: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; ceil: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; min: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; max: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; abs: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; sign: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; "|>": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; apply: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; identity: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; comp: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; constantly: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; doc: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; arity: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; effectName: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; qualifiedName: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; qualifiedMatcher: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; "!=": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; "==": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; "<": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; ">": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; "<=": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; ">=": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; not: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; compare: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; typeOf: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; raise: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; dissoc: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; keys: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; vals: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; entries: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; find: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; merge: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; mergeWith: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; zipmap: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; selectKeys: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isBoolean: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isNull: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isNumber: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isString: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isFunction: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isInteger: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isArray: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isObject: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isCollection: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isSequence: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isRegexp: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isEffect: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isZero: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isPos: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isNeg: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isEven: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isOdd: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isFalse: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isTrue: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isEmpty: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isNotEmpty: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isVector: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isGrid: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isMatrix: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; regexp: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; reMatch: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; replace: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; replaceAll: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; str: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; lowerCase: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; upperCase: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; trim: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; split: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; join: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; isBlank: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; "<<": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; ">>": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; ">>>": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; "&": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; "|": FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; xor: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; assert: FunctionReference<"string" | "object" | "array" | "vector" | "matrix" | "grid" | "collection" | "sequence" | "effect" | "special-expression" | "predicate" | "math" | "functional" | "regular-expression" | "bitwise" | "misc" | "meta" | "assertion" | "linearAlgebra" | "numberTheory" | "convert" | "json" | "time" | "effectHandler" | "macros" | "shorthand" | "datatype" | "playground-effect" | "ast" | "test">; }; export declare const apiReference: Record; export declare const effectReference: Record; export declare const allReference: Record; /** Build a URL-safe linkName. Replaces %2F (slash) with ~ to avoid path-separator issues. */ export declare function makeLinkName(category: string, key: string): string; export declare function getLinkName(reference: Reference): string; export {};