UInt class

Homepage
Wrappers

Introduction

The UInt class "wraps" a uint value to allow storing it where a class object is required.

Structure

  1. "Class values"
  2. UInt value

Functions

New and Destroy

UInt_new(value = 0):
Creates a new UInt object.

UInt_destroy(UIntObject):
Destroys the UInt object and frees its memory.

Getters and Setters

UInt_getValue(UIntObject):
Returns the value stored in the UInt object.

UInt_setValue(UIntObject, value = 0):
Sets the value stored in the UInt object.


Homepage  |  Wrappers