SofaBuffers TypeScript - v0.9.0
    Preparing search index...

    Variable WireTypeConst

    WireType: {
        ArrayFixlen: 5;
        ArraySigned: 4;
        ArrayUnsigned: 3;
        Fixlen: 2;
        SequenceEnd: 7;
        SequenceStart: 6;
        Signed: 1;
        Unsigned: 0;
    } = ...

    The three low bits of a field header: what kind of field follows.

    Type Declaration

    • ReadonlyArrayFixlen: 5

      Array of fixed-length values (fp32 / fp64 only).

    • ReadonlyArraySigned: 4

      Array of signed (zig-zag) varints.

    • ReadonlyArrayUnsigned: 3

      Array of unsigned varints.

    • ReadonlyFixlen: 2

      Fixed-length value: fp32, fp64, string or blob (see FixlenSubtype).

    • ReadonlySequenceEnd: 7

      Closes the current sequence. Encoded as the single byte 0x07.

    • ReadonlySequenceStart: 6

      Opens a nested sequence (new id scope).

    • ReadonlySigned: 1

      Signed varint scalar (zig-zag encoded).

    • ReadonlyUnsigned: 0

      Unsigned varint scalar.