@eagleoutice/flowr - v2.13.14
    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

    Maps to exactly one definition of an identifier if the source is known, otherwise to a list of all possible definitions

    n?: string

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

    parent: Environment

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

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

    • Create a clone of this environment.

      The clone shares this environment's memory until either side writes to it (see writableMemory); cloning a frame is therefore independent of how many definitions it holds, which matters because attached packages contribute frames with thousands of them.

      Parameters

      • recurseParents: boolean

        Whether to also clone parent environments

      Returns Environment