Difference between revisions of "Buffer:get"
From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>") |
|||
(2 intermediate revisions by 2 users not shown) | |||
Line 3: | Line 3: | ||
=== Description === | === Description === | ||
− | Gets data from a | + | Gets data from a '''Buffer''' object. |
− | < | + | <syntaxhighlight lang="lua"> |
(string) = Buffer:get(offset,size) | (string) = Buffer:get(offset,size) | ||
− | </ | + | </syntaxhighlight> |
=== Parameters === | === Parameters === | ||
− | '''offset''': (number) | + | '''offset''': (number) position in the buffer to get data from '''optional'''<br/> |
− | '''size''': (number) | + | '''size''': (number) size of the data to fetch '''optional'''<br/> |
=== Return values === | === Return values === | ||
− | '''Returns''' (string) | + | '''Returns''' (string) extracted data<br/> |
{{Buffer}} | {{Buffer}} |
Latest revision as of 14:26, 13 July 2023
Available since: Gideros 2020.2
Class: Buffer
Description
Gets data from a Buffer object.
(string) = Buffer:get(offset,size)
Parameters
offset: (number) position in the buffer to get data from optional
size: (number) size of the data to fetch optional
Return values
Returns (string) extracted data