AutoBE
    Preparing search index...

    Read a bounded byte range from a generic file.

    interface Locator {
        from: number & Type<"uint32">;
        to: number & Type<"uint32">;
        type: "byteRange";
        unit: "byte";
    }
    Index

    Properties

    Properties

    from: number & Type<"uint32">

    Inclusive zero-based range start.

    to: number & Type<"uint32">

    Exclusive zero-based range end.

    type: "byteRange"

    Chunk locator discriminator.

    unit: "byte"

    Range coordinate unit.