diff --git a/docs/modules/pico8lib.uint32.html b/docs/modules/pico8lib.uint32.html index d03ee68..40eb956 100644 --- a/docs/modules/pico8lib.uint32.html +++ b/docs/modules/pico8lib.uint32.html @@ -31,6 +31,10 @@
pico8lib.uint32
uint32.raw | +Internal raw represenation of the uint32 value as a 16.16 fixed point number | +
uint32.overflow | +Overflow flag | +
uint32.repr | +Cached decimal formatted representation | +
uint32.repr_raw | +Last raw value to be converted to decimal | +
uint32:__eq (a, b) | +Equality Operation + Only called for uint32==uint32 | +
uint32:__lt (a, b) | +Less Than Operation | +
uint32:__unm (u) | +Unary Minus Operation + Always underflows for unsigned type | +
uint32:__add (a, b) | +Addition Operation | +
uint32:__sub (a, b) | +Subtraction Operation | +
uint32:__mul (a, b) | +Multiplication Operation | +
uint32:__concat (a, b) | +String Concatenation Operation | +
uint32:from_raw (raw[, overflow]) | +Create a new uint32 from a raw value and overflow | +
uint32:create_from_bytes (a, b, c, d[, overflow]) | +Create a new uint32 from a raw value and overflow | +
uint32:__call (t, val[, overflow]) | +Constructor | +
a==b
+ a<b
+ -u
+ a+b
+ a-b
+ a*b
+ tostr(a) .. tostr(b)
+