You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are a few issues with the serialize functionality of the foundation package.
The main one is that vector means a different thing in free_funcs.ts and in buffer_reader.ts.
In free_funcs.ts it is used to describe a blob of data prefixed with its byte length and in buffer_reader.ts it is describes a blob of data prefixed with number of elements inside the vector (number of objects in the vector and not individual bytes).
Another issue is that most of the functionality in the package is unused.
Rename the functions in free_funcs.ts to not use the term vector for byte_length prefixed blobs of data.
Nuke the the unused functionality (we mostly just use buffer_reader.ts).
The text was updated successfully, but these errors were encountered:
There are a few issues with the serialize functionality of the foundation package.
The main one is that vector means a different thing in free_funcs.ts and in buffer_reader.ts.
In
free_funcs.ts
it is used to describe a blob of data prefixed with its byte length and inbuffer_reader.ts
it is describes a blob of data prefixed with number of elements inside the vector (number of objects in the vector and not individual bytes).Another issue is that most of the functionality in the package is unused.
free_funcs.ts
to not use the term vector for byte_length prefixed blobs of data.buffer_reader.ts
).The text was updated successfully, but these errors were encountered: