linXiv frontend (TS/JS)
    Preparing search index...

    Interface GraphMatch

    What a filter pass concluded. With no filter in force the three sets still hold every node of their type, so style and layout passes never need an "is a filter on" branch.

    interface GraphMatch {
        authors: Set<string>;
        drawnCount: number;
        hiddenTypes: Set<GraphNodeType>;
        isolate: boolean;
        papers: Set<string>;
        tags: Set<string>;
    }
    Index
    authors: Set<string>
    drawnCount: number

    Matched nodes of a still-drawn type. Zero on a non-empty library is the "no matches" state.

    hiddenTypes: Set<GraphNodeType>

    Node types a Visibility checkbox switched off: not drawn at all.

    isolate: boolean
    papers: Set<string>
    tags: Set<string>