Difference between revisions of "Buffer:get"
From GiderosMobile
| m (Text replacement - "<source" to "<syntaxhighlight") | |||
| Line 4: | Line 4: | ||
| === Description === | === Description === | ||
| Gets data from a '''Buffer''' object. | Gets data from a '''Buffer''' object. | ||
| − | < | + | <syntaxhighlight lang="lua"> | 
| (string) = Buffer:get(offset,size) | (string) = Buffer:get(offset,size) | ||
| </source> | </source> | ||
Revision as of 14:26, 13 July 2023
Available since: Gideros 2020.2
Class: Buffer
Description
Gets data from a Buffer object. <syntaxhighlight lang="lua"> (string) = Buffer:get(offset,size) </source>
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
