Top "Tr1" questions

TR1 - C++ Technical Report 1, proposed extensions to the C++ standard library

Typedef a template class without specifying the template parameters

I'm trying to typedef either an unordered_map or std::map depending whether there are TR1 libraries available. But I …

c++ templates c++11 typedef tr1
How to access target of std::tr1::shared_ptr in GDB

How can I access target of a std::tr1::shared_ptr in GDB. This doesn't work: (gdb) p sharedPtr->…

c++ gdb shared-ptr tr1
enable_if method specialization

template<typename T> struct A { A<T> operator%( const T& x); }; template<typename T&…

c++ boost c++11 template-specialization tr1
Difference in performance between map and unordered_map in c++

I have a simple requirement, i need a map of type . however i need fastest theoretically possible retrieval time. i …

c++ data-structures stl tr1
std::tr1::function and std::tr1::bind

I have a problem using a very complicated C function in a C++ class (rewriting the C function is not …

c++ c++11 tr1
C++ <map> vs <unordered_map> vs <tr1/unordered_map> vs <ext/unordered_map>

I'm currently looking for a better alternative to std::map and have come across classes mentioned in the post title. …

c++ c++11 tr1 unordered-map
How to extend std::tr1::hash for custom types?

How do I allow the STL implementation to pick up my custom types? On MSVC, there is a class std::…

c++ tr1
C++ TR1: how to use the normal_distribution?

I'm trying to use the C++ STD TechnicalReport1 extensions to generate numbers following a normal distribution, but this code (adapted …

c++ tr1 normal-distribution
C++ Regex to match words without punctuation

I searched, couldn't find anything. In the interest of not wasting any more of my time on the chance that …

c++ regex tr1
shared_ptr in std::tr1

I am working on a platform with a gcc compiler however boost cannot compile on it. I am wondering what …

c++ gcc boost shared-ptr tr1