| title | bytes length |
|---|---|
| categories | bytes |
| version | 0.107.0 |
| bytes | Output the length of any bytes in the pipeline. |
| usage | Output the length of any bytes in the pipeline. |
| editLink | false |
| contributors | false |
bytes length for bytes
Output the length of any bytes in the pipeline.
> bytes length {flags} ...rest
...rest: For a data structure input, find the length of data at the given cell paths.
| input | output |
|---|---|
| binary | int |
| list<binary> | list<int> |
| table | table |
| record | record |
Return the length of a binary
> 0x[1F FF AA AB] | bytes length
4Return the lengths of multiple binaries
> [0x[1F FF AA AB] 0x[1F]] | bytes length
╭───┬───╮
│ 0 │ 4 │
│ 1 │ 1 │
╰───┴───╯