|
Lists and Collections Library |
|
|
This library contains functions to create and maintain lists and collections. A list is a dynamic array that can grow or shrink as needed. Each entry in a list can contain several items of different basic types, essentially creating a simple record/structure. Functions to search and sort are also available.
The lists are similar to C/C++ Standard Library <array> Container or MFC CObArrays.
Definitions
To use the library, include the following
$INCLUDE "MyBASIC2_ListCol" $LIBRARY "MyBASIC2_ListColLib"
|