Char class

Homepage
Wrappers

Introduction

The Char class "wraps" a char value to allow storing it where a class object is required.

Structure

  1. "Class values"
  2. Char value

Functions

New and Destroy

Char_new(value = 0):
Creates a new Char object.

Char_destroy(CharObject):
Destroys the Char object and frees its memory.

Getters and Setters

Char_getValue(CharObject):
Returns the value stored in the Char object.

Char_setValue(CharObject, value = 0):
Sets the value stored in the Char object.


Homepage  |  Wrappers