Buffer luau

From GiderosMobile
Revision as of 23:33, 5 February 2025 by MoKaLux (talk | contribs) (wip)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Supported platforms: Platform android.pngPlatform ios.pngPlatform mac.pngPlatform pc.pngPlatform linux.png
Available since: Gideros 2025.1

Description

This is the Luau buffer library implemented in Gideros.

Example

-- creates a buffer initialized to the contents of the string
local str = "Hello Gideros!"
b = buffer.fromstring(str)
print(buffer.len(b))
-- returns the buffer data as a string
print(buffer.tostring(b))

Reference

https://luau.org/library#buffer-library
https://create.roblox.com/docs/reference/engine/libraries/buffer

Methods

assert error if v nil or false, otherwise returns v
collectgarbage opts: stop, restart, collect, count, step, setpause, setstepmul
ColorValue sets a Color the r,g,b,a channel values
dofile executes as Lua chunk, default stdin, returns value
error terminates protected func, never returns
xpcall pcall function f with new error handler err

Events

Constants