/** * Built-in Method Table Assembly * * Collects the 8 per-type method records into the single table the runtime * and the language service read. * * Key insertion order is observable, not incidental: get-hover.ts and * get-completions.ts in @rcrsr/rill-language-service iterate * `Object.values(BUILTIN_METHODS)`, so reordering these fields reorders * hover and completion output. * * @internal - Not part of public API */ import type { RillFunction } from '../../../core/callable.js'; export declare const BUILTIN_METHODS: { string: Record; list: Record; dict: Record; number: Record; bool: Record; vector: Record; datetime: Record; duration: Record; tuple: Record; ordered: Record; };