c++ - Where to get a list of boost libraries included into VS2010 as part of STD? -


where list of boost libraries included vs2010 part of std?

this should it: http://msdn.microsoft.com/en-us/library/bb982198.aspx

strictly speaking these tr1 headers included vs2010, believe of types renamed boost counterparts.


<array> 

defines container template class array , several supporting templates.


<functional> (tr1) 

defines several templates construct function objects, objects of type defines operator(). function object can function pointer, more typically, object used store additional information can accessed during function call.


<memory> (tr1)    

defines class, operator, , several templates allocate , free objects.


<random> 

defines many random number generators.


<regex> 

defines template class parse regular expressions, , several template classes , functions search text matches regular expression object.

<tuple> 

defines template tuple class instances hold objects of varying types.


<type_traits> 

defines templates provide compile-time constants give information properties of type arguments.


<unordered_map> 

defines container template classes unordered_map , unordered_multimap , supporting templates.


<unordered_set> 

defines container template classes unordered_multiset , unordered_set , supporting templates.


<utility> (tr1) 

defines several general templates can used throughout standard template library.


Comments

Popular posts from this blog

asp.net - repeatedly call AddImageUrl(url) to assemble pdf document -

java - Android recognize cell phone with keyboard or not? -

iphone - How would you achieve a LED Scrolling effect? -