==== BYTES ====
----
Return the size of an object in bytes and its CRC32 checksum
----
^ __Input Stack__ ^ ^ __Output Stack__ ^^
| **O** | **→** | **#checksum** | **Isize** |
| //Level 1// | //→// | //Level 2// | //Level 1// |
{{page>manual:chapter6:aux:legend&nofooter&noeditbtn&inline}}
| **Keyword type** | [[manual:chapter5:basics#commands|Command]] ||
| **Parallel list processing capabilities** | [[manual:chapter5:listproc#group-2commands-that-must-use-dolist-to-parallel-process|Group 2]] | //Commands that must use //''[[manual:chapter6:lists:cmd_cmddolist|DOLIST]]''// to parallel process// |
| **Affected by flags** | //None// ||
----
The ''BYTES'' command returns the size in bytes of an object and its [[https://en.wikipedia.org/wiki/Cyclic_redundancy_check|CRC32]] checksum as a base-16 integer.
----
''BYTES'' is not fully equivalent to its **userRPL** counterpart.
In particular:
* the algorithm used in **userRPL** is different.
----
**__Input__**
4:
3:
2:
1: 'SIN(X)'
…………………………………………………………………………………………………………
BYTES
\\
**__Output__**
4:
3:
2: #CE2DEB01h
1: 20
…………………………………………………………………………………………………………
----
{{page>manual:chapter6:system&nofooter&noeditbtn&inline}}