| 12345678910111213141516171819202122232425262728293031323334353637 |
- return {
- summary = 'Unpack unsigned 8-bit integers from the Blob.',
- description = 'Returns unsigned 8-bit integers from the data in the Blob.',
- arguments = {
- offset = {
- type = 'number',
- default = '0',
- description = 'A non-negative byte offset to read from.'
- },
- count = {
- type = 'number',
- default = '1',
- description = 'The number of integers to read.'
- }
- },
- returns = {
- ['...'] = {
- type = 'number',
- description = '`count` unsigned 8-bit integers, from 0 to 255.'
- }
- },
- variants = {
- {
- arguments = { 'offset', 'count' },
- returns = { '...' }
- }
- },
- related = {
- 'Blob:getI8',
- 'Blob:getI16',
- 'Blob:getU16',
- 'Blob:getI32',
- 'Blob:getU32',
- 'Blob:getF32',
- 'Blob:getF64'
- }
- }
|