Standard C++ Library
The Dinkum C++ Library is a complete implementation of the
ANSI/ISO Standard C++ Library, corresponding to ISO/IEC IS 14882,
approved in 1998 and corrected through 2003. Among many other compiler
vendors, Microsoft and IBM ship customized versions of this library
with their C++ compiler products.
The library contains source code for all 51 C++ headers,
as well as source code for the C++ Library modules that implement
the functions defined in these headers. The code is highly portable,
thread safe, and parameterized so that you can disable features such
as exceptions and multithreading. An optional iterator debugging mode
helps you locate such difficult-to-find bugs as invalid iterators,
improper ordering predicates, and bad ranges. The library also
includes hash tables and a singly linked list, along with a few
other common extensions.
Every C++ compiler comes with a Standard C++ library, and many
come with ours, so why would you want to license yet another one?
- You'll get much better
conformance, and the quality that comes with a decade of use by
millions of programmers, by replacing the
shipped library with ours.
- The Dinkum Compleat Libraries are a coherent set of features
that have been tested as a unit. We've already handled the
integration problems for you.
- You get the same rich set of features across multiple platforms,
greatly simplifying code porting.