==== BINGETW ====
----
----
Extract data from a binary data object as a list of 32-bit words
----
^ __Input Stack__ ^^^ ^ __Output Stack__ ^
| **Dsrc** | **Numoffset** | **Numwords** | **→** | **L** |
| //Level 3// | //Level 2// | //Level 1// | //→// | //Level 1// |
{{page>manual:chapter6:aux:legend&nofooter&noeditbtn&inline}}
|**Type**| [[manual:chapter5:basics#commands|Command]] ||
|**Parallel list processing**| [[manual:chapter5:listproc#group-7multiple-argument-one-result-commands|Group 7]] ||
|**Affected by flags**| None ||
----
The ''BINGETW'' command retrieves a specified number of words from a binary data container, starting from an offset position and returning the result in form of a list. The data is read from the container assuming it is stored in __little endian byte order__.
----
This command is new in newRPL and does not exist in userRPL.
----
3: BINDATA 2 VWZ3iYESIzR4
2: 1
1: 1
……………………………………………………………………………………
BINGETW
will result in
1: { #11223344h }
……………………………………………………………………………………
----
{{page>manual:chapter6:libdata&nofooter&noeditbtn&inline}}