tarr is a textual constant array format.
Random access time is constant.
In theory, arbitrary size arrays could be supported, in practice, there may be implementation defined technical limits.
016
022
028
031
hello
world
hi
Above example contains three entries and is equivalent to the following JSON list:
["hello", "world", "hi"]
It is equivalent to the following:
12
18
24
27
hello
world
hi