Aapl C++ Template Library 2.14 review

Download
by rbytes.net on

Aapl is a C++ template library for generic programming

License: LGPL (GNU Lesser General Public License)
File size: 0K
Developer: Adrian Thurston
0 stars award from rbytes.net

Aapl is a C++ template library for generic programming.

Aapl supports different generic programming paradigms by providing variations of standard data structures. For example, a by-value linked list template may be used to store a user supplied type such as an integer.

A different list template allows the user to define the data structure that is to be used as the element. A third list template allows a single instance of a data structure to be an element in multiple lists.

Wherever possible, Aapl data structures do not depend on heap memory allocation. There are variations of the linked list and AVL tree that allow the programmer to allocate a collection of elements statically and insert/remove them at will.

Aapl data structures do not have their data members hidden behind a strict abstraction layer. Aapl makes very little use of the private keyword. Though data abstractions can be a useful programming technique to quickly produce very robust code, they can inhibit functionality when the data structure is the centre of much attention. Therefore Aapl leaves the use of abstractions up to the programmer.

What's New in This Release:
A transfer function has been added to the double lists and AVL trees.
Remaining double list and AVL tree copy constructors and assignment operators have been changed to implement a deep copy, rather than a shallow copy.
All copy constructors and assignment operators now implement a deep copy.
Deep and shallow copy functions have been removed.

Aapl C++ Template Library 2.14 search tags