This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| functions:packbytes [2017/03/19 15:59] – korshun | functions:packbytes [2017/04/17 17:47] (current) – korshun | ||
|---|---|---|---|
| Line 4: | Line 4: | ||
| ===== Description ===== | ===== Description ===== | ||
| - | Packs four bytes into one integer and returns the result. The bytes must be in [0, 255] range. | + | Packs four bytes into one integer and returns the result. The bytes must be in the [0, 255] range. |
| - | The packed values can be retrieved using [[UnpackByte]]. | + | The packed values can be retrieved using [[UnpackByteX]]. |
| <note tip> | <note tip> | ||
| Line 13: | Line 13: | ||
| You can also pack shorts (-32768 to 32767) using [[PackShorts]]. | You can also pack shorts (-32768 to 32767) using [[PackShorts]]. | ||
| - | If you need more extreme packing, you should code the bit packing | + | If you need more extreme packing, you should code it yourself.</ |
| ===== Examples ===== | ===== Examples ===== | ||
| Line 41: | Line 41: | ||
| } | } | ||
| </ | </ | ||
| + | |||