Where to get a list of boost libraries included into VS2010 as part of STD?
Where to get a list of boost libr开发者_StackOverflow社区aries included into VS2010 as part of STD?
This should be it: http://msdn.microsoft.com/en-us/library/bb982198.aspx
Strictly speaking these are the TR1 headers that are included with VS2010, I believe some of the types were renamed from their boost counterparts.
<array>
Defines the container template class array and several supporting templates.
<functional> (TR1)
Defines several templates that help construct function objects, which are objects of a type that defines operator(). A function object can be a function pointer, but more typically, the object is used to store additional information that can be accessed during a function call.
<memory> (TR1)
Defines a class, an operator, and several templates that help allocate and free objects.
<random>
Defines many random number generators.
<regex>
Defines a template class to parse regular expressions, and several template classes and functions to search text for matches to a regular expression object.
<tuple>
Defines a template tuple Class whose instances hold objects of varying types.
<type_traits>
Defines templates that provide compile-time constants that give information about the properties of their type arguments.
<unordered_map>
Defines the container template classes unordered_map and unordered_multimap and their supporting templates.
<unordered_set>
Defines the container template classes unordered_multiset and unordered_set and their supporting templates.
<utility> (TR1)
Defines several general templates that can be used throughout the Standard Template Library.
精彩评论