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
While creating custom types, it's sometimes helpful to know the size (in bytes) of a base type. In general this isn't possible to compute (because of dynamically-sized elements), but for simple types like int32 and objects composed of these simple types, it is.
It would be helpful if there were a computeSize(type) method on the jBinary object, or perhaps a computeSize method on type descriptors which would produce this information when it's available.
The text was updated successfully, but these errors were encountered:
While creating custom types, it's sometimes helpful to know the size (in bytes) of a base type. In general this isn't possible to compute (because of dynamically-sized elements), but for simple types like
int32
and objects composed of these simple types, it is.It would be helpful if there were a
computeSize(type)
method on the jBinary object, or perhaps acomputeSize
method on type descriptors which would produce this information when it's available.The text was updated successfully, but these errors were encountered: