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

    Restricts/aliases which exports of a package are attached; undefined fields attach every export.

    interface AttachSpec {
        all?: boolean;
        exclude?: ReadonlySet<string>;
        include?: ReadonlyMap<string, string>;
        namespaceOnly?: boolean;
        pos?: number;
    }
    Index
    all?: boolean

    attach every export (import::from .all, box::use(pkg[...]))

    exclude?: ReadonlySet<string>

    attach all exports except these (import::from .except)

    include?: ReadonlyMap<string, string>

    attached exports as attachedName to exportName (import::from/box::use selection or aliasing)

    namespaceOnly?: boolean
    pos?: number

    library(pkg, pos = 3): the search() position to attach at, DefaultAttachPosition if unset