Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
manual:chapter6:libdata:cmd_binputw [2019/11/06 15:44] jojo1973 |
manual:chapter6:libdata:cmd_binputw [2021/09/23 00:44] (current) jojo1973 |
||
---|---|---|---|
Line 1: | Line 1: | ||
==== BINPUTW ==== | ==== BINPUTW ==== | ||
- | ---- | ||
<callout type=" | <callout type=" | ||
---- | ---- | ||
- | Store 32-bit words into binary data object | + | Store 32-bit words into a binary data container |
</ | </ | ||
Line 9: | Line 8: | ||
---- | ---- | ||
^ __Input Stack__ | ^ __Input Stack__ | ||
- | | **D< | + | | **D< |
- | | **D< | + | | **D< |
- | | **D< | + | | **D< |
- | | //Level 4// | //Level 3// | //Level 2// | //Level 1// | // | + | | //Level 4// | //Level 3// | //Level 2// | //Level 1// | // |
{{page> | {{page> | ||
- | |**Type**| [[manual: | + | | **Keyword type** | [[manual: |
- | |**Parallel list processing**| [[manual: | + | | **Parallel list processing |
- | |**Affected by flags**| None || | + | | **Affected by flags** |
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
</ | </ | ||
<callout color=" | <callout color=" | ||
---- | ---- | ||
- | The '' | + | The '' |
The source of data can be: | The source of data can be: | ||
- | * a **scalar**: the number is converted to an unsigned binary integer and divided into 32-bits words which are stored in the container, in __little endian word order__; | + | * a **scalar**: the number is converted to an unsigned binary integer and divided into 32-bit words which are stored in the container, in __little endian word order__; |
* a **string**: the string is converted to a stream of UTF8 codepoints whose lower 32 bits are stored into the container; | * a **string**: the string is converted to a stream of UTF8 codepoints whose lower 32 bits are stored into the container; | ||
* a **list of scalars**: each number is converted to an unsigned binary integer and its lower 32 bits are written in the container. | * a **list of scalars**: each number is converted to an unsigned binary integer and its lower 32 bits are written in the container. | ||
- | If the size of the source data is less than the specified number of words remaining words will be set to ''# | + | If the size of the source data is less than the specified number of words remaining words will be set to ''# |
</ | </ | ||
<callout type=" | <callout type=" | ||
---- | ---- | ||
- | This command | + | '' |
</ | </ | ||
<callout type=" | <callout type=" | ||
---- | ---- | ||
+ | **__Input__** | ||
< | < | ||
- | 4: BINDATA 2 AAAAAAAAAAAA | + | 4: BINDATA 2 AAAAAAAAAAAA |
- | 3: | + | 3: |
- | 2: # | + | 2: # |
- | 1: | + | 1: |
- | …………………………………………………………………………………… | + | ………………………………………………………………………………………………………… |
- | BINPUTW | + | BINPUTW |
</ | </ | ||
- | will result in | + | \\ |
+ | **__Output__** | ||
< | < | ||
- | 1: BINDATA 2 VWZ3iYESIzR4 | + | 4: |
- | …………………………………………………………………………………… | + | 3: |
+ | 2: | ||
+ | 1: BINDATA 2 VWZ3iYESIzR4 | ||
+ | ………………………………………………………………………………………………………… | ||
+ | |||
</ | </ | ||
- | a data container storing words '' | ||
- | ---- | ||
- | < | ||
- | 4: BINDATA 2 AAAAAAAAAAAA | ||
- | 3: 0 | ||
- | 2: " | ||
- | 1: 2 | ||
- | …………………………………………………………………………………… | ||
- | BINPUTW | ||
- | </ | ||
- | (where character on level 2 is $\overline{\infty}$, | ||
- | < | ||
- | 1: BINDATA 2 AAAiHqAAADBV | ||
- | …………………………………………………………………………………… | ||
- | |||
- | </ | ||
- | a data container storing words '' | ||
- | ---- | ||
- | < | ||
- | 4: BINDATA 2 AAAAAAAAAAAA | ||
- | 3: 0 | ||
- | 2: { # | ||
- | 1: 2 | ||
- | …………………………………………………………………………………… | ||
- | BINPUTW | ||
- | </ | ||
- | will result in | ||
- | < | ||
- | 1: BINDATA 2 IjNEVBRDMiE5 | ||
- | …………………………………………………………………………………… | ||
- | |||
- | </ | ||
- | a data container storing words '' | ||
</ | </ | ||
Line 94: | Line 79: | ||
{{page> | {{page> | ||
</ | </ | ||
+ |