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

    Interface FlowrSearchElement<Info>

    Yes, for now we do technically not need a wrapper around the RNode, but this allows us to attach caches etc. just for the respective search.

    interface FlowrSearchElement<Info> {
        enrichments?: {
            "call-targets"?: CallTargetsContent;
            "cfg-information"?: {
                isReachable: (...) | (...) | (...);
                isRoot: boolean;
            };
            "last-call"?: LastCallContent;
            "query-data"?: QueryDataElementContent;
            roxygen?: {
                documentation: (...)[];
                tags: {
                    aliases?: ...;
                    author?: ...;
                    backref?: ...;
                    concept?: ...;
                    describeIn?: ...;
                    description?: ...;
                    details?: ...;
                    docType?: ...;
                    eval?: ...;
                    evalNamespace?: ...;
                    evalRd?: ...;
                    example?: ...;
                    examples?: ...;
                    examplesIf?: ...;
                    export?: ...;
                    exportClass?: ...;
                    exportMethod?: ...;
                    exportPattern?: ...;
                    exportS3Method?: ...;
                    family?: ...;
                    field?: ...;
                    format?: ...;
                    import?: ...;
                    importClassesFrom?: ...;
                    importFrom?: ...;
                    importMethodsFrom?: ...;
                    includeRmd?: ...;
                    inherit?: ...;
                    inheritDotParams?: ...;
                    inheritParams?: ...;
                    inheritSection?: ...;
                    keywords?: ...;
                    md?: ...;
                    method?: ...;
                    name?: ...;
                    noMd?: ...;
                    noRd?: ...;
                    order?: ...;
                    param?: ...;
                    rawNamespace?: ...;
                    rawRd?: ...;
                    rdname?: ...;
                    references?: ...;
                    return?: ...;
                    returns?: ...;
                    section?: ...;
                    seealso?: ...;
                    slot?: ...;
                    source?: ...;
                    template?: ...;
                    templateVar?: ...;
                    text?: ...;
                    title?: ...;
                    unknown?: ...;
                    usage?: ...;
                    useDynLib?: ...;
                };
                [key: string]: unknown;
            };
        };
        node: RNode<Info>;
    }

    Type Parameters

    • Info
    Index
    enrichments?: {
        "call-targets"?: CallTargetsContent;
        "cfg-information"?: { isReachable: (...) | (...) | (...); isRoot: boolean };
        "last-call"?: LastCallContent;
        "query-data"?: QueryDataElementContent;
        roxygen?: {
            documentation: (...)[];
            tags: {
                aliases?: ...;
                author?: ...;
                backref?: ...;
                concept?: ...;
                describeIn?: ...;
                description?: ...;
                details?: ...;
                docType?: ...;
                eval?: ...;
                evalNamespace?: ...;
                evalRd?: ...;
                example?: ...;
                examples?: ...;
                examplesIf?: ...;
                export?: ...;
                exportClass?: ...;
                exportMethod?: ...;
                exportPattern?: ...;
                exportS3Method?: ...;
                family?: ...;
                field?: ...;
                format?: ...;
                import?: ...;
                importClassesFrom?: ...;
                importFrom?: ...;
                importMethodsFrom?: ...;
                includeRmd?: ...;
                inherit?: ...;
                inheritDotParams?: ...;
                inheritParams?: ...;
                inheritSection?: ...;
                keywords?: ...;
                md?: ...;
                method?: ...;
                name?: ...;
                noMd?: ...;
                noRd?: ...;
                order?: ...;
                param?: ...;
                rawNamespace?: ...;
                rawRd?: ...;
                rdname?: ...;
                references?: ...;
                return?: ...;
                returns?: ...;
                section?: ...;
                seealso?: ...;
                slot?: ...;
                source?: ...;
                template?: ...;
                templateVar?: ...;
                text?: ...;
                title?: ...;
                unknown?: ...;
                usage?: ...;
                useDynLib?: ...;
            };
            [key: string]: unknown;
        };
    }
    node: RNode<Info>