Buffer.fill
From GiderosMobile
Revision as of 05:55, 6 February 2025 by MoKaLux (talk | contribs) (Created page with "__NOTOC__ '''Available since:''' Gideros 2025.1<br/> '''Class:''' buffer_luau<br/> === Description === Sets ''count'' bytes in the ''buffer'' starting at the specified ''...")
Available since: Gideros 2025.1
Class: buffer_luau
Description
Sets count bytes in the buffer starting at the specified offset to value.
buffer.fill(b,offset,value,count)
Parameters
b: (buffer) buffer to write the data into
offset: (number) offset from the beginning of the buffer memory, starting from 0
value: (number) an integer number in range [0, 255]
count: (number) number of bytes to write optional if omitted, all bytes after the specified offset are set
Example
local str = "Hello Gideros!"
local b = buffer.fromstring(str)
local offset, value, count = 0, 8, 5
buffer.fill(b, offset, value, count)
print(buffer.tostring(b))