List Module
Role in the System
The purpose of this module is simply to implement a single links-list of items (initially unordered). The relevant files are list.h and list.cc. The implementation mimics that of the functional programming language LISP; employing "car", "cdr", and "mapcar". Furthermore, the implementation for this list class is asynchronous. For a synchronized list, see Synchronized List Module.