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

    REnvironmentInformation

    Implements

    Index
    builtInEnv?: true

    Built-in environment that must not change; only for the top-most envs.

    globalEnv?: true

    marks the global environment (.GlobalEnv); attached packages (see EnvType) live below it

    id: number

    Unique internally generated identifier, used for debugging not comparison

    n?: string

    Optional name for namespaced/non-anonymous environments, please only set if you know what you are doing

    namespaces?: ReadonlyMap<string, BuiltInMemory>

    What the configuration states about packages R does not attach on startup, by package; only the built-in env carries it (see statedIn).

    parent: Environment

    Lexical parent of the environment, if any (can be manipulated by R code)

    superMemory?: MemoryView

    What the lexical frame this stands in for held when its closure was created; <<- binds lexically, so defining super needs this.

    which search-path layer this env is (package/namespace/imports), if any

    tailCache?: Map<string, readonly IdentifierDefinition[] | undefined>

    what a resolution found below this frame, by target and name; only frames nothing writes keep one