@eagleoutice/flowr - v2.13.15
    Preparing search index...
    interface BuiltInApplyConfiguration {
        hasUnknownSideEffects?: boolean;
        indexOfFunction?: number;
        nameOfFunctionArgument?: string;
        resolveInEnvironment?: "local" | "global";
        resolveValue?: boolean;
        unquoteFunction?: boolean;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown
    Index
    hasUnknownSideEffects?: boolean

    the call reaches beyond what we can see even when the callee resolves, like rlang::exec

    indexOfFunction?: number

    the 0-based index of the argument which is the actual function passed, defaults to 1

    nameOfFunctionArgument?: string

    does the argument have a name that it can be given by as well?

    resolveInEnvironment?: "local" | "global"

    Should the function be resolved in the global environment?

    resolveValue?: boolean

    Should the value of the function be resolved?

    unquoteFunction?: boolean

    Should we unquote the function if it is given as a string?