C/C++
tr1cpp.txt
Associated article: The Technical Report on C++ Library Extensions
Tags: C/C++
Published source code accompanying the article by Matthew H. Austern in which he examines TR1, the Technical Report on C++ Library Extensions.
The Technical Report on C++ Library Extensions
by Matthew H. Austern
Listing One
#include <tr1/unordered_map>
#include <iostream>
#include <string>
int main()
{
using namespace std;
using namespace std::tr1;
typedef unordered_map<...


