Search Results

9
votes

Limiting range of value types in C++

You can do this using templates -- try something like this: #include <boost/static_assert.hpp> template< typename T, int min, int max >class LimitedValue { template&l …
3
votes

Drawbacks to templates and the STL in C++

For embedded device programming (in my case -- smartphones). Templates are discouraged because of the concern for generated code size (small amount of RAM and disk space). Also the compilers are pr …