[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[sc-users] ArrayedCollection -> msgSize



i remember this has been on the list a while ago. i think ArrayedCollection -> msgSize is still wrong:

[[ '/set', 1234, \listData ]].bundleSize;	// --> 48

OK!

0000 23 62 75 6e 64 6c 65 00 00 00 00 00 00 00 00 01 | #bundle.........| 0010 00 00 00 1c 2f 73 65 74 00 00 00 00 2c 69 73 00 |..../ set....,is.| 0020 00 00 04 d2 6c 69 73 74 44 61 74 61 00 00 00 00 |....listData....|

[ '/set', 1234, \listData ].msgSize; // -> 52

should be 28 instead! :

0000 2f 73 65 74 00 00 00 00 2c 69 73 00 00 00 04 d2 |/ set....,is.....|
0010  6c 69 73 74 44 61 74 61  00 00 00 00              |listData....|

--> 28 !

?