blob: 32d4229c56a8552cc0ef674c9a4988f6ea0754c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
tlx is a collection of C++ helpers and extensions universally needed, but not
found in the STL.The most important design goals and conventions are:
* high modularity with as little dependencies between modules as possible.
* attempt to never break existing interfaces.
* compile on all platforms with C++ - smartphones, supercomputers, windows, etc.
* zero external dependencies: no additional libraries are required.
* warning and bug-freeness on all compilers.
* keep overhead down - small overall size such that is can be included without
bloating applications.
WWW: https://github.com/tlx/tlx
|