vote up 2 vote down star

How do you calculate the length of the string that would be returned by Array::pack? Is there something like Python's calcsize?

flag

2 Answers

vote up 0 vote down

By making an interpreter complying to the specifications found in Array::pack.

Or, reusing the existing implementation to count the number of characters instead of appending them to a string.

link|flag
vote up 1 vote down

array.pack("").count I would say. Not really the fastest method, but it works.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.