Top "Tr1" questions

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

tr1::function and tr1::bind

I put the following into Ideone.com (and codepad.org): #include <iostream> #include <string> #include <…

c++ tr1
How is tr1::reference_wrapper useful?

recently I've been reading through Scott Meyers's excellent Effective C++ book. In one of the last tips he covered some …

c++ stl boost tr1
some practical uses of mem_fn & bind

Can someone recommend some cool practical uses of tr1's mem_fn and bind utilities? I don't need esoteric c++ …

c++ stdbind tr1 mem-fun
Using TR1 libraries in GCC and MSVC

I would like to use the TR1 libraries that ship with modern versions of GCC and MSVC, but there are …

c++ visual-c++ gcc tr1
Comparing std::tr1::function<> objects

I've been trying to implement a C#-like event system in C++ with the tr1 function templates used to store …

c++ function tr1
Defining a hash function in TR1 unordered_map inside a struct

According to this, it is possible to define an equality function in a TR1 unordered_map like this: #include <…

c++ hash tr1 unordered-map
TR1 Shared Arrays

I've had a hard time finding references in the TR1 documentation concerning shared arrays. The Boost documentation is fairly clear …

c++ boost tr1