Container classes

Homepage

Introduction

How a container class behaves can be drastically different depending on which container it is. So, check out the available container classes for the one that best fits your needs.

Classes

Array - storage container for a list of objects whose count is known on creation.

Circularly-Doubly-linked list (Cddl) - no longer supported (use Vector instead)

Vector - dynamic array (an Array that grows as needed)


Homepage