Beyond the C++ standard library, an introduction to boost
I recently finished reading through this book. Very good introduction materials of boost libraries to us mortals. The covered libraries include utility classes such as shared_ptr, scoped_ptr, intrusive_ptr, weak_ptr, operators, noncopyable, regex etc; container classes such as any, variant, tuple; functional classes such as bind, lambda, functional, signal. These are the MVP classes that can make c++ programmers' lives much easier. The lambda libraries are especially impressive when binding functors with standard algorithm.
Boost (www.boost.org) development is very active. Check them out.
Boost (www.boost.org) development is very active. Check them out.
<< Home