Skip to content

RawData.setUint

JoeStrout edited this page Apr 29, 2026 · 2 revisions

set unsigned 32-bit integer at the given byte offset

Parameters

Parameter Default Value Note
offset 0
value 0

Return value

None.

Notes

Example

import "RawData"
data = new RawData
data.resize 4
data.setUint 0, 3000000000
print data.uint(0)   // 3000000000

Clone this wiki locally