@@ -311,7 +311,7 @@ const type = new sb.StructType({
311311 3 /* 3 floats in the tuple*/ ,
312312 3 /* 3 characters in second field's name*/ , 0x74 /* t*/ , 0x77 /* w*/ , 0x6f /* o*/ ,
313313 0xff , /* type is defined previously*/
314- 0 , 11 /* type is defined 11 bytes before the 0 on this line */
314+ 8 /* type is defined 8 bytes before this byte */
315315]
316316````
317317In the following definitions, ` type ` means the binary type format.
@@ -326,6 +326,7 @@ In the following definitions, `type` means the binary type format.
326326- ` UnsignedIntType ` : identifier ` 0x13 `
327327- ` UnsignedLongType ` : identifier ` 0x14 `
328328- ` BigUnsignedIntType ` : identifier ` 0x15 `
329+ - ` FlexUnsignedIntType ` : identifier ` 0x17 `
329330- ` DateType ` : identifier ` 0x1A `
330331- ` DayType ` : identifier ` 0x1B `
331332- ` TimeType ` : identifier ` 0x1C `
@@ -394,6 +395,7 @@ In the following definitions, `type` means the binary type format.
394395- ` BigUnsignedIntType ` :
395396 - `byteCount` - `flexInt`
396397 - `number` - `byteCount`-byte unsigned integer
398+ - ` FlexUnsignedIntType ` : ` flexInt `
397399- ` DateType ` : 8-byte unsigned integer storing milliseconds in [ Unix time] ( https://en.wikipedia.org/wiki/Unix_time )
398400- ` DayType ` : 3-byte unsigned integer storing days since the [ Unix time] ( https://en.wikipedia.org/wiki/Unix_time ) epoch
399401- ` TimeType ` : 4-byte unsigned integer storing milliseconds since the start of the day
0 commit comments