| title | bytes build |
|---|---|
| categories | bytes |
| version | 0.110.0 |
| bytes | Create bytes from the arguments. |
| usage | Create bytes from the arguments. |
| editLink | false |
| contributors | false |
bytes build for bytes
Create bytes from the arguments.
> bytes build {flags} ...rest
...rest: List of bytes.
| input | output |
|---|---|
| nothing | binary |
Builds binary data from 0x[01 02], 0x[03], 0x[04]
> bytes build 0x[01 02] 0x[03] 0x[04]
Length: 4 (0x4) bytes | printable whitespace ascii_other non_ascii
00000000: 01 02 03 04 ••••
Builds binary data from byte numbers
> bytes build 255 254 253 252
Length: 4 (0x4) bytes | printable whitespace ascii_other non_ascii
00000000: ff fe fd fc ××××