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

    Where to look up what flowR knows about a function, in that order: the name as it resolves here, the built-in definitions, and the signature database for the rest.

    interface FnPropsSource {
        builtIns?: BuiltIns;
        environment?: REnvironmentInformation;
        signatures?: PackageSignatureSource;
        version?: string;
    }
    Index
    builtIns?: BuiltIns

    consulted when there is no environment at hand

    resolve the name here first, so a definition in the analyzed code shadows the built-in as it does in R

    fills in what the built-in definitions do not state, for namespaced names

    version?: string

    the package version to ask the signature database for (its latest by default)