Arrays And Lists Overview

This document is an overview of arrays and lists.

Purpose

Provides arrays and lists of objects.

Description

Functionality is provided by a number of APIs. Use them as follows:

Fixed Size Arrays Overview

Provides a simple wrapper to C++ arrays with additional automatic checking of index values.

Dynamic Arrays Overview

Provides families of dynamically expandible heap-based arrays.

Array Keys Overview

Defines a property of array element by which a dynamic array can sorted and searched.

Singly Linked Lists Overview

Manipulates a singly-linked list: an ordered, non-indexed list of elements, that can be traversed only from start to end.

Doubly Linked Lists Overview

Manipulates a doubly-linked list: an ordered, non-indexed list of elements, that can be traversed in both directions.