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

    For the specifications of pure etc. please have a look at InputClassifierFunctionIdentifiers.

    interface InputClassifierConfig<
        Functions extends
            InputClassifierFunctionIdentifiers
            | FlowrSearchLike = readonly Identifier[] | FlowrSearchLike,
    > {
        cmdline?: Functions;
        const?: Functions;
        dconst?: Functions;
        ffi?: Functions;
        file?: Functions;
        glob?: Functions;
        lang?: Functions;
        linkedEntryPoints?: readonly LinkedInputEntryPoint[];
        linkedObjects?: readonly LinkedInputObject[];
        narrowing?: readonly NarrowingFunction[];
        net?: Functions;
        options?: Functions;
        param?: Functions;
        pure?: Functions;
        rand?: Functions;
        scope?: Functions;
        system?: Functions;
        tempfile?: Functions;
        unknown?: Functions;
        user?: Functions;
    }

    Type Parameters

    Hierarchy

    Index
    cmdline?: Functions
    const?: Functions
    dconst?: Functions
    ffi?: Functions
    file?: Functions
    glob?: Functions
    lang?: Functions
    linkedEntryPoints?: readonly LinkedInputEntryPoint[]

    Calls that hand a function to a framework, which then binds linkedObjects to its parameters by position.

    linkedObjects?: readonly LinkedInputObject[]

    Objects provided by a framework rather than by the code itself, like shiny's input.

    narrowing?: readonly NarrowingFunction[]

    Functions whose result is bounded by one of their arguments (classified by that argument alone).

    net?: Functions
    options?: Functions
    param?: Functions
    pure?: Functions

    Functions which are considered to be pure (i.e., deterministic, trusted, safe, idempotent on the lub of the input types)

    rand?: Functions
    scope?: Functions
    system?: Functions
    tempfile?: Functions
    unknown?: Functions
    user?: Functions