TR1 - C++ Technical Report 1, proposed extensions to the C++ standard library
For one class I want to store some function pointers to member functions of the same class in one map …
c++ function function-pointers c++11 tr1I ran across enable_shared_from_this while reading the Boost.Asio examples and after reading the documentation I am …
c++ boost boost-asio tr1Different compilers seem to have different ideas about TR1. G++ only seems to accept includes of the type: #include <…
c++ include c++11 portability tr1I've been thinking about using shared pointers, and I know how to implement one myself--Don't want to do it, so …
c++ shared-ptr tr1I am just learning about smart pointers, and I am having trouble assigning a pre-existing location of a variable to …
c++ std shared-ptr tr1How can I write a wrapper that can wrap any function and can be called just like the function itself? …
c++ function wrapper functional-programming tr1I understand how to use weak_ptr and shared_ptr. I understand how shared_ptr works, by counting the number …
c++ boost weak-references tr1 weak-ptrI need to map a pair of long long to a double, but I'm not sure what hash function to …
c++ hash tr1 unordered-map hash-function