AutoBE
    Preparing search index...

    Read a bounded range from a text-like file.

    interface Locator {
        from: number & Type<"uint32">;
        to: number & Type<"uint32">;
        type: "textRange";
        unit: "line" | "character";
    }
    Index

    Properties

    Properties

    from: number & Type<"uint32">

    Inclusive zero-based range start.

    to: number & Type<"uint32">

    Exclusive zero-based range end.

    type: "textRange"

    Chunk locator discriminator.

    unit: "line" | "character"

    Range coordinate unit.