C++11 tools and data structures
Compile time information about data types: Minimum, maximum and size. Covers most basic data types. Useful when testing difference architectures.
Math and associated support tools. Check for overflow before operations for very sensitive data
if safeadd(a,b) sum = a+b;
else handle Overflow();dynamic node based simple LinkedList template
support
- for c++11 range based for
- array style random access by index
- Iterator begin and end
- stack access members
- c++ exemptions
soon
- emplace
dynamic node based simple stack template
support
- c++ exemptions
soon
- for c++11 range based for
- iterators
- emplace
- array basic
Tools to support logging to file and debugging.
Tools to help with unit tests and testing in general
Calls all tests for libegg
Tests for LinkedList
Tests for Stack