unordered_set
-
I am using Visual Studio 2005. And I want access to unordered_set storage containers. They are apparently in TR1. whatever that is? How can I be able to use them in my program? Thanks
steph5 wrote:
They are apparently in TR1. whatever that is?
TR1 is a document describing proposed extensions to the C++ standards. You can read more here: http://en.wikipedia.org/wiki/Technical_Report_1[^]
steph5 wrote:
How can I be able to use them in my program?
The TR1 extensions were not included in Visual Studio 2005. If you wish to use unordered_set you may take the following avenues of recourse: 1.) You could use the Boost implementation available here: http://www.boost.org/doc/libs/1_35_0/doc/html/intrusive/unordered_set_unordered_multiset.html[^] 2.) You could purchase the Dinkumware implementation which is actually what Microsoft used in VC2008http://www.dinkumware.com/tr1.aspx[^] 3.) You could purchase VC2008 If you simply want to do experiments with unordered_set storage containers then perhaps you could perform them with the GCC compiler. The libstdc++ library has implemented most of TR1 available here: http://gcc.gnu.org/libstdc++/[^] Best Wishes, -David Delaune