@eagleoutice/flowr - v2.15.9
    Preparing search index...

    flowR's own modeling of one built-in entry naming a function, read off the built-in definitions the analyzer registered (see ReadOnlyFlowrAnalyzerEnvironmentContext#builtInDefinitions). Raw config values are not surfaced as-is - some carry closures (ignoreIf, hasUnknownSideEffects), which are not meaningful to a query consumer - so only their keys are.

    interface BuiltinModel {
        assumePrimitive: boolean;
        configKeys: readonly string[];
        evalHandler?: string;
        kind: "function" | "replacement" | "constant";
        namespace?: string;
        processor?: string;
        tags: readonly string[];
    }
    Index
    assumePrimitive: boolean
    configKeys: readonly string[]

    the config keys the entry declares

    evalHandler?: string

    BuiltInEvalName value, when the entry folds calls to a constant

    kind: "function" | "replacement" | "constant"
    namespace?: string

    the package the entry names it under, e.g. stats for sd; undefined for an unqualified entry like most of base

    processor?: string

    BuiltInProcName value, for a function entry

    tags: readonly string[]

    SemanticCallTag values the entry's config states, empty when it states none