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

    Variable BuiltInEvalHandlerMapperConst

    BuiltInEvalHandlerMapper: {
        "eval:cmp": (args: BuiltInEvalHandlerArgs) => Value;
        "eval:group": (args: BuiltInEvalHandlerArgs) => Value;
        "eval:logical": (args: BuiltInEvalHandlerArgs) => Value;
        "eval:numeric": (args: BuiltInEvalHandlerArgs) => Value;
        "eval:seq": (
            args: BuiltInEvalHandlerArgs,
        ) => { type: symbol } | ValueVector<Lift<(...)>, Value>;
        "eval:string-fn": (args: BuiltInEvalHandlerArgs) => Value;
        "eval:vector": (
            args: BuiltInEvalHandlerArgs,
        ) => { type: symbol } | ValueVector<Lift<(...)>, Value>;
    } = ...

    The value-solver function behind every BuiltInEvalName, the counterpart of the BuiltInProcessorMapper. A built-in picks one of these by name with its serializable BuiltInFunctionDefinition#evalHandler.

    Type Declaration