From: Benjamin Kosnik
diff --git a/libstdc++-v3/doc/html/manual/abi.html b/libstdc++-v3/doc/html/manual/abi.html index 33050723d6f..bceda223735 100644 --- a/libstdc++-v3/doc/html/manual/abi.html +++ b/libstdc++-v3/doc/html/manual/abi.html @@ -436,54 +436,54 @@ gcc test.c -g -O2 -L. -lone -ltwo /usr/lib/libstdc++.so.5 /usr/lib/libstdc++.so. 24660: versioning weak symbols in libstdc++
19664: libstdc++ headers should have pop/push of the visibility around the declarations -
Versioning With Namespaces . ISO C++ J16/06-0083 diff --git a/libstdc++-v3/doc/html/manual/api.html b/libstdc++-v3/doc/html/manual/api.html index 7e5fc59faaf..4b093b1cbf4 100644 --- a/libstdc++-v3/doc/html/manual/api.html +++ b/libstdc++-v3/doc/html/manual/api.html @@ -72,11 +72,11 @@ _Alloc_traits have been removed. __alloc to select an underlying allocator that satisfied memory allocation requests. The selection of this underlying allocator was not user-configurable. -
Table B.1. Extension Allocators
Allocator (3.4) | Header (3.4) | Allocator (3.[0-3]) | Header (3.[0-3]) |
---|---|---|---|
__gnu_cxx::new_allocator<T> | ext/new_allocator.h | std::__new_alloc | memory |
__gnu_cxx::malloc_allocator<T> | ext/malloc_allocator.h | std::__malloc_alloc_template<int> | memory |
__gnu_cxx::debug_allocator<T> | ext/debug_allocator.h | std::debug_alloc<T> | memory |
__gnu_cxx::__pool_alloc<T> | ext/pool_allocator.h | std::__default_alloc_template<bool,int> | memory |
__gnu_cxx::__mt_alloc<T> | ext/mt_allocator.h | ||
__gnu_cxx::bitmap_allocator<T> | ext/bitmap_allocator.h |
Releases after gcc-3.4 have continued to add to the collection +
Table B.1. Extension Allocators
Allocator (3.4) | Header (3.4) | Allocator (3.[0-3]) | Header (3.[0-3]) |
---|---|---|---|
__gnu_cxx::new_allocator<T> | ext/new_allocator.h | std::__new_alloc | memory |
__gnu_cxx::malloc_allocator<T> | ext/malloc_allocator.h | std::__malloc_alloc_template<int> | memory |
__gnu_cxx::debug_allocator<T> | ext/debug_allocator.h | std::debug_alloc<T> | memory |
__gnu_cxx::__pool_alloc<T> | ext/pool_allocator.h | std::__default_alloc_template<bool,int> | memory |
__gnu_cxx::__mt_alloc<T> | ext/mt_allocator.h | ||
__gnu_cxx::bitmap_allocator<T> | ext/bitmap_allocator.h |
Releases after gcc-3.4 have continued to add to the collection of available allocators. All of these new allocators are standard-style. The following table includes details, along with the first released version of GCC that included the extension allocator. -
Table B.2. Extension Allocators Continued
Allocator | Include | Version |
---|---|---|
__gnu_cxx::array_allocator<T> | ext/array_allocator.h | 4.0.0 |
__gnu_cxx::throw_allocator<T> | ext/throw_allocator.h | 4.2.0 |
+
Table B.2. Extension Allocators Continued
Allocator | Include | Version |
---|---|---|
__gnu_cxx::array_allocator<T> | ext/array_allocator.h | 4.0.0 |
__gnu_cxx::throw_allocator<T> | ext/throw_allocator.h | 4.2.0 |
Debug mode first appears.
Precompiled header support PCH support. diff --git a/libstdc++-v3/doc/html/manual/backwards.html b/libstdc++-v3/doc/html/manual/backwards.html index a124e09bae0..4e7f6e33c98 100644 --- a/libstdc++-v3/doc/html/manual/backwards.html +++ b/libstdc++-v3/doc/html/manual/backwards.html @@ -14,8 +14,8 @@ ISO Standard (e.g., statistical analysis). While there are a lot of really useful things that are used by a lot of people, the Standards Committee couldn't include everything, and so a lot of those âobviousâ classes didn't get included. -
Known Issues include many of the limitations of its immediate ancestor.
Portability notes and known implementation limitations are as follows.
At least some older implementations don't have std::ios_base
, so you should use std::ios::badbit
, std::ios::failbit
and std::ios::eofbit
and std::ios::goodbit
.
-
+
Known Issues include many of the limitations of its immediate ancestor.
Portability notes and known implementation limitations are as follows.
At least some older implementations don't have std::ios_base
, so you should use std::ios::badbit
, std::ios::failbit
and std::ios::eofbit
and std::ios::goodbit
.
+
In earlier versions of the standard,
fstream.h
,
ostream.h
@@ -41,7 +41,7 @@ considered replaced and rewritten.
archived. The code is considered replaced and rewritten.
Portability notes and known implementation limitations are as follows. -
+
Some care is required to support C++ compiler and or library
implementation that do not have the standard library in
namespace std
.
@@ -105,7 +105,7 @@ AC_DEFUN([AC_CXX_NAMESPACE_STD], [
AC_DEFINE(HAVE_NAMESPACE_STD,,[Define if g++ supports namespace std. ])
fi
])
-
The following illustrate implementation-allowed illegal iterator use, and then correct use.
@@ -118,7 +118,7 @@ AC_DEFUN([AC_CXX_NAMESPACE_STD], [
if (iterator)
won't work any more => use
if (iterator != iterator_type())
-
Glibc 2.0.x and 2.1.x define ctype.h
functionality as macros
(isspace, isalpha etc.).
@@ -151,7 +151,7 @@ std:: (__ctype_b[(int) ( ( 'X' ) )] & (unsigned short int) _ISspace ) ;
(ctype.h
) and the
definitions in namespace std::
(<cctype>
).
-
One solution is to add an autoconf-test for this:
AC_MSG_CHECKING(for container::at) @@ -177,7 +177,7 @@ AC_DEFINE(HAVE_CONTAINER_AT)],
If you are using other (non-GNU) compilers it might be a good idea
to check for string::at
separately.
-
Use some kind of autoconf test, plus this:
#ifdef HAVE_CHAR_TRAITS @@ -185,7 +185,7 @@ AC_DEFINE(HAVE_CONTAINER_AT)], #else #define CPP_EOF EOF #endif -
There are two functions for deleting the contents of a string:
clear
and erase
(the latter returns the
string).
@@ -203,12 +203,12 @@ erase(size_type __pos = 0, size_type __n = npos)
Unfortunately, clear
is not implemented in this
version, so you should use erase
(which is probably
faster than operator=(charT*)
).
-
These are no longer supported. Please use stringstreams instead. -
Although the ISO standard i/ostringstream
-classes are
provided, (sstream
), for
compatibility with older implementations the pre-ISO
@@ -296,14 +296,14 @@ any = temp;
Another example of using stringstreams is in this howto.
There is additional information in the libstdc++-v2 info files, in particular âinfo iostreamâ. -
Earlier GCC releases had a somewhat different approach to threading configuration and proper compilation. Before GCC 3.0, configuration of the threading model was dictated by compiler @@ -361,7 +361,7 @@ libstdc++-v3. of the SGI STL (version 3.3), with extensive changes.
A more formal description of the V3 goals can be found in the official design document. -
Portability notes and known implementation limitations are as follows.
The pre-ISO C++ headers +
Portability notes and known implementation limitations are as follows.
The pre-ISO C++ headers
(iostream.h
, defalloc.h
etc.) are
available, unlike previous libstdc++ versions, but inclusion
generates a warning that you are using deprecated headers.
@@ -433,7 +433,7 @@ like vector.h
can be replaced with using namespace std;
can be put at the global
scope. This should be enough to get this code compiling, assuming the
other usage is correct.
-
At this time most of the features of the SGI STL extension have been +
At this time most of the features of the SGI STL extension have been replaced by standardized libraries. In particular, the unordered_map and unordered_set containers of TR1 are suitable replacement for the non-standard hash_map and hash_set @@ -505,7 +505,7 @@ AC_DEFUN([AC_HEADER_EXT_HASH_SET], [ AC_DEFINE(HAVE_EXT_HASH_SET,,[Define if ext/hash_set is present. ]) fi ]) -
The existence of ios::nocreate
being used for
input-streams has been confirmed, most probably because the author
thought it would be more correct to specify nocreate explicitly. So
@@ -516,7 +516,7 @@ open the file for reading, check if it has been opened, and then
decide whether you want to create/replace or not. To my knowledge,
even older implementations support app
, ate
and trunc
(except for app
?).
-
Phil Edwards writes: It was considered and rejected for the ISO
@@ -539,7 +539,7 @@ No stream::attach(int fd)
For another example of this, refer to
fdstream example
by Nicolai Josuttis.
-
Check for complete library coverage of the C++1998/2003 standard.
@@ -607,7 +607,7 @@ AC_DEFUN([AC_HEADER_STDCXX_98], [ AC_DEFINE(STDCXX_98_HEADERS,,[Define if ISO C++ 1998 header files are present. ]) fi ]) -
Check for library coverage of the TR1 standard.
@@ -684,7 +684,7 @@ AC_DEFUN([AC_HEADER_TR1_UNORDERED_SET], [ AC_DEFINE(HAVE_TR1_UNORDERED_SET,,[Define if tr1/unordered_set is present. ]) fi ]) -
Check for baseline language coverage in the compiler for the C++0xstandard.
@@ -896,27 +896,27 @@ AC_DEFUN([AC_HEADER_UNORDERED_SET], [ AC_DEFINE(HAVE_UNORDERED_SET,,[Define if unordered_set is present. ]) fi ]) -
[ lbl32 ] Migration guide for GCC-3.2 diff --git a/libstdc++-v3/doc/html/manual/bitmap_allocator.html b/libstdc++-v3/doc/html/manual/bitmap_allocator.html index fdaed21319d..5e6458dcd29 100644 --- a/libstdc++-v3/doc/html/manual/bitmap_allocator.html +++ b/libstdc++-v3/doc/html/manual/bitmap_allocator.html @@ -103,7 +103,7 @@ else return false.
Consider a block of size 64 ints. In memory, it would look like this: (assume a 32-bit system where, size_t is a 32-bit entity). -
+
The first Column(268) represents the size of the Block in bytes as seen by the Bitmap Allocator. Internally, a global free list is used to keep track of the free blocks used and given back by the diff --git a/libstdc++-v3/doc/html/manual/bk01pt01ch01.html b/libstdc++-v3/doc/html/manual/bk01pt01ch01.html index 23f4da4f4d3..688f019c03a 100644 --- a/libstdc++-v3/doc/html/manual/bk01pt01ch01.html +++ b/libstdc++-v3/doc/html/manual/bk01pt01ch01.html @@ -6101,7 +6101,7 @@ In this implementation the header names are prefixed by
This page describes the TR1 support in mainline GCC SVN, not in any particular release. -
Table 1.1. C++ TR1 Implementation Status
Section | Description | Done | Broken | Missing | Comments |
---|---|---|---|---|---|
2 | General Utilities | ||||
2.1 | Reference wrappers | done | Â | Â | Â |
2.1.1 | Additions to header <functional> synopsis | done | Â | Â | Â |
2.1.2 | Class template reference_wrapper | done | Â | Â | Â |
2.1.2.1 | reference_wrapper construct/copy/destroy | done | Â | Â | Â |
2.1.2.2 | reference_wrapper assignment | done | Â | Â | Â |
2.1.2.3 | reference_wrapper access | done | Â | Â | Â |
2.1.2.4 | reference_wrapper invocation | done | Â | Â | Â |
2.1.2.5 | reference_wrapper helper functions | done | Â | Â | Â |
2.2 | Smart pointers | done | Â | Â | Â |
2.2.1 | Additions to header <memory> synopsis | done | Â | Â | Â |
2.2.2 | Class bad_weak_ptr | done | Â | Â | Â |
2.2.3 | Class template shared_ptr | done | Â | Â | See Footnotes |
2.2.3.1 | shared_ptr constructors | done | Â | Â | Â |
2.2.3.2 | shared_ptr destructor | done | Â | Â | Â |
2.2.3.3 | shared_ptr assignment | done | Â | Â | Â |
2.2.3.4 | shared_ptr modifiers | done | Â | Â | Â |
2.2.3.5 | shared_ptr observers | done | Â | Â | Â |
2.2.3.6 | shared_ptr comparison | done | Â | Â | Â |
2.2.3.7 | shared_ptr I/O | done | Â | Â | Â |
2.2.3.8 | shared_ptr specialized algorithms | done | Â | Â | Â |
2.2.3.9 | shared_ptr casts | done | Â | Â | Â |
2.2.3.10 | get_deleter | done | Â | Â | Â |
2.2.4 | Class template weak_ptr | done | Â | Â | Â |
2.2.4.1 | weak_ptr constructors | done | Â | Â | Â |
2.2.4.2 | weak_ptr destructor | done | Â | Â | Â |
2.2.4.3 | weak_ptr assignment | done | Â | Â | Â |
2.2.4.4 | weak_ptr modifiers | done | Â | Â | Â |
2.2.4.5 | weak_ptr observers | done | Â | Â | Â |
2.2.4.6 | weak_ptr comparison | done | Â | Â | Â |
2.2.4.7 | weak_ptr specialized algorithms | done | Â | Â | Â |
2.2.5 | Class template enable_shared_from_this | done | Â | Â | Â |
3 | Function Objects | ||||
3.1 | Definitions | done | Â | Â | Â |
3.2 | Additions to <functional> synopsis | done | Â | Â | Â |
3.3 | Requirements | done | Â | Â | Â |
3.4 | Function return types | done | Â | Â | Â |
3.5 | Function template mem_fn | done | Â | Â | Â |
3.6 | Function object binders | done | Â | Â | Â |
3.6.1 | Class template is_bind_expression | done | Â | Â | Â |
3.6.2 | Class template is_placeholder | done | Â | Â | Â |
3.6.3 | Function template bind | done | Â | Â | Â |
3.6.4 | Placeholders | done | Â | Â | Â |
3.7 | Polymorphic function wrappers | done | Â | Â | Â |
3.7.1 | Class bad_function_call | done | Â | Â | Â |
3.7.1.1 | bad_function_call constructor | done | Â | Â | Â |
3.7.2 | Class template function | done | Â | Â | Â |
3.7.2.1 | function construct/copy/destroy | done | Â | Â | Â |
3.7.2.2 | function modifiers | done | Â | Â | Â |
3.7.2.3 | function capacity | done | Â | Â | Â |
3.7.2.4 | function invocation | done | Â | Â | Â |
3.7.2.5 | function target access | done | Â | Â | Â |
3.7.2.6 | undefined operators | done | Â | Â | Â |
3.7.2.7 | null pointer comparison operators | done | Â | Â | Â |
3.7.2.8 | specialized algorithms | done | Â | Â | Â |
4 | Metaprogramming and type traits | ||||
4.1 | Requirements | done | Â | Â | Â |
4.2 | Header <type_traits> synopsis | done | Â | Â | Â |
4.3 | Helper classes | done | Â | Â | Â |
4.4 | General Requirements | done | Â | Â | Â |
4.5 | Unary Type Traits | done | Â | Â | Â |
4.5.1 | Primary Type Categories | done | Â | Â | Â |
4.5.2 | Composite type traits | done | Â | Â | Â |
4.5.3 | Type properties | done | Â | Â | Â |
4.6 | Relationships between types | done | Â | Â | Â |
4.7 | Transformations between types | done | Â | Â | Â |
4.7.1 | Const-volatile modifications | done | Â | Â | Â |
4.7.2 | Reference modifications | done | Â | Â | Â |
4.7.3 | Array modifications | done | Â | Â | Â |
4.7.4 | Pointer modifications | done | Â | Â | Â |
4.8 | Other transformations | done | Â | Â | Â |
4.9 | Implementation requirements | done | Â | Â | Â |
5 | Numerical Facilities | ||||
5.1 | Random number generation | done | Â | Â | Â |
5.1.1 | Requirements | done | Â | Â | Â |
5.1.2 | Header <random> synopsis | done | Â | Â | Â |
5.1.3 | Class template variate_generator | done | Â | Â | Â |
5.1.4 | Random number engine class templates | done | Â | Â | Â |
5.1.4.1 | Class template linear_congruential | done | Â | Â | Â |
5.1.4.2 | Class template mersenne_twister | done | Â | Â | Â |
5.1.4.3 | Class template subtract_with_carry | done | Â | Â | Â |
5.1.4.4 | Class template subtract_with_carry_01 | done | Â | Â | Â |
5.1.4.5 | Class template discard_block | done | Â | Â | Â |
5.1.4.6 | Class template xor_combine | done | Â | Â | operator()() per N2079 |
5.1.5 | Engines with predefined parameters | done | Â | Â | Â |
5.1.6 | Class random_device | done | Â | Â | Â |
5.1.7 | Random distribution class templates | done | Â | Â | Â |
5.1.7.1 | Class template uniform_int | done | Â | Â | Â |
5.1.7.2 | Class bernoulli_distribution | done | Â | Â | Â |
5.1.7.3 | Class template geometric_distribution | done | Â | Â | Â |
5.1.7.4 | Class template poisson_distribution | done | Â | Â | Â |
5.1.7.5 | Class template binomial_distribution | done | Â | Â | Â |
5.1.7.6 | Class template uniform_real | done | Â | Â | Â |
5.1.7.7 | Class template exponential_distribution | done | Â | Â | Â |
5.1.7.8 | Class template normal_distribution | done | Â | Â | Â |
5.1.7.9 | Class template gamma_distribution | done | Â | Â | Â |
5.2 | Mathematical special functions | done | Â | Â | Â |
5.2.1 | Additions to header <cmath> synopsis | done | Â | Â | Â |
5.2.1.1 | associated Laguerre polynomials | done | Â | Â | Â |
5.2.1.2 | associated Legendre functions | done | Â | Â | Â |
5.2.1.3 | beta function | done | Â | Â | Â |
5.2.1.4 | (complete) elliptic integral of the first kind | done | Â | Â | Â |
5.2.1.5 | (complete) elliptic integral of the second kind | done | Â | Â | Â |
5.2.1.6 | (complete) elliptic integral of the third kind | done | Â | Â | Â |
5.2.1.7 | confluent hypergeometric functions | done | Â | Â | Â |
5.2.1.8 | regular modified cylindrical Bessel functions | done | Â | Â | Â |
5.2.1.9 | cylindrical Bessel functions (of the first kind) | done | Â | Â | Â |
5.2.1.10 | irregular modified cylindrical Bessel functions | done | Â | Â | Â |
5.2.1.11 | cylindrical Neumann functions | done | Â | Â | Â |
5.2.1.12 | (incomplete) elliptic integral of the first kind | done | Â | Â | Â |
5.2.1.13 | (incomplete) elliptic integral of the second kind | done | Â | Â | Â |
5.2.1.14 | (incomplete) elliptic integral of the third kind | done | Â | Â | Â |
5.2.1.15 | exponential integral | done | Â | Â | Â |
5.2.1.16 | Hermite polynomials | done | Â | Â | Â |
5.2.1.17 | hypergeometric functions | done | Â | Â | Â |
5.2.1.18 | Laguerre polynomials | done | Â | Â | Â |
5.2.1.19 | Legendre polynomials | done | Â | Â | Â |
5.2.1.20 | Riemann zeta function | done | Â | Â | Â |
5.2.1.21 | spherical Bessel functions (of the first kind) | done | Â | Â | Â |
5.2.1.22 | spherical associated Legendre functions | done | Â | Â | Â |
5.2.1.23 | spherical Neumann functions | done | Â | Â | Â |
5.2.2 | Additions to header <math.h> synopsis | done | Â | Â | Â |
6 | Containers | ||||
6.1 | Tuple types | done | Â | Â | Â |
6.1.1 | Header <tuple> synopsis | done | Â | Â | Â |
6.1.2 | Additions to header <utility> synopsis | done | Â | Â | Â |
6.1.3 | Class template tuple | done | Â | Â | Â |
6.1.3.1 | Construction | done | Â | Â | Â |
6.1.3.2 | Tuple creation functions | done | Â | Â | Â |
6.1.3.3 | Tuple helper classes | done | Â | Â | Â |
6.1.3.4 | Element access | done | Â | Â | Â |
6.1.3.5 | Relational operators | done | Â | Â | Â |
6.1.4 | Pairs | done | Â | Â | Â |
6.2 | Fixed size array | done | Â | Â | Â |
6.2.1 | Header <array> synopsis | done | Â | Â | Â |
6.2.2 | Class template array | done | Â | Â | Â |
6.2.2.1 | array constructors, copy, and assignment | done | Â | Â | Â |
6.2.2.2 | array specialized algorithms | done | Â | Â | Â |
6.2.2.3 | array size | done | Â | Â | Â |
6.2.2.4 | Zero sized array s | done | Â | Â | Â |
6.2.2.5 | Tuple interface to class template array | done | Â | Â | Â |
6.3 | Unordered associative containers | done | Â | Â | Â |
6.3.1 | Unordered associative container requirements | done | Â | Â | Â |
6.3.1.1 | Exception safety guarantees | done | Â | Â | Â |
6.3.2 | Additions to header <functional> synopsis | done | Â | Â | Â |
6.3.3 | Class template hash | done | Â | Â | Â |
6.3.4 | Unordered associative container classes | done | Â | Â | Â |
6.3.4.1 | Header <unordered_set> synopsis | done | Â | Â | Â |
6.3.4.2 | Header <unordered_map> synopsis | done | Â | Â | Â |
6.3.4.3 | Class template unordered_set | done | Â | Â | Â |
6.3.4.3.1 | unordered_set constructors | done | Â | Â | Â |
6.3.4.3.2 | unordered_set swap | done | Â | Â | Â |
6.3.4.4 | Class template unordered_map | done | Â | Â | Â |
6.3.4.4.1 | unordered_map constructors | done | Â | Â | Â |
6.3.4.4.2 | unordered_map element access | done | Â | Â | Â |
6.3.4.4.3 | unordered_map swap | done | Â | Â | Â |
6.3.4.5 | Class template unordered_multiset | done | Â | Â | Â |
6.3.4.5.1 | unordered_multiset constructors | done | Â | Â | Â |
6.3.4.5.2 | unordered_multiset swap | done | Â | Â | Â |
6.3.4.6 | Class template unordered_multimap | done | Â | Â | Â |
6.3.4.6.1 | unordered_multimap constructors | done | Â | Â | Â |
6.3.4.6.2 | unordered_multimap swap | done | Â | Â | Â |
7 | Regular Expressions | ||||
7.1 | Definitions | Â | Â | missing | Â |
7.2 | Requirements | Â | Â | missing | Â |
7.3 | Regular expressions summary | Â | Â | missing | Â |
7.4 | Header <regex> synopsis | Â | Â | missing | Â |
7.5 | Namespace tr1::regex_constants | Â | Â | missing | Â |
7.5.1 | Bitmask Type syntax_option_type | Â | Â | missing | Â |
7.5.2 | Bitmask Type regex_constants::match_flag_type | Â | Â | missing | Â |
7.5.3 | Implementation defined error_type | Â | Â | missing | Â |
7.6 | Class regex_error | Â | Â | missing | Â |
7.7 | Class template regex_traits | Â | Â | missing | Â |
7.8 | Class template basic_regex | Â | Â | missing | Â |
7.8.1 | basic_regex constants | Â | Â | missing | Â |
7.8.2 | basic_regex constructors | Â | Â | missing | Â |
7.8.3 | basic_regex assign | Â | Â | missing | Â |
7.8.4 | basic_regex constant operations | Â | Â | missing | Â |
7.8.5 | basic_regex locale | Â | Â | missing | Â |
7.8.6 | basic_regex swap | Â | Â | missing | Â |
7.8.7 | basic_regex non-member functions | Â | Â | missing | Â |
7.8.7.1 | basic_regex non-member swap | Â | Â | missing | Â |
7.9 | Class template sub_match | Â | Â | missing | Â |
7.9.1 | sub_match members | Â | Â | missing | Â |
7.9.2 | sub_match non-member operators | Â | Â | missing | Â |
7.10 | Class template match_results | Â | Â | missing | Â |
7.10.1 | match_results constructors | Â | Â | missing | Â |
7.10.2 | match_results size | Â | Â | missing | Â |
7.10.3 | match_results element access | Â | Â | missing | Â |
7.10.4 | match_results formatting | Â | Â | missing | Â |
7.10.5 | match_results allocator | Â | Â | missing | Â |
7.10.6 | match_results swap | Â | Â | missing | Â |
7.11 | Regular expression algorithms | Â | Â | missing | Â |
7.11.1 | exceptions | Â | Â | missing | Â |
7.11.2 | regex_match | Â | Â | missing | Â |
7.11.3 | regex_search | Â | Â | missing | Â |
7.11.4 | regex_replace | Â | Â | missing | Â |
7.12 | Regular expression Iterators | Â | Â | missing | Â |
7.12.1 | Class template regex_iterator | Â | Â | missing | Â |
7.12.1.1 | regex_iterator constructors | Â | Â | missing | Â |
7.12.1.2 | regex_iterator comparisons | Â | Â | missing | Â |
7.12.1.3 | regex_iterator dereference | Â | Â | missing | Â |
7.12.1.4 | regex_iterator increment | Â | Â | missing | Â |
7.12.2 | Class template regex_token_iterator | Â | Â | missing | Â |
7.12.2.1 | regex_token_iterator constructors | Â | Â | missing | Â |
7.12.2.2 | regex_token_iterator comparisons | Â | Â | missing | Â |
7.12.2.3 | regex_token_iterator dereference | Â | Â | missing | Â |
7.12.2.4 | regex_token_iterator increment | Â | Â | missing | Â |
7.13 | Modified ECMAScript regular expression grammar | Â | Â | missing | Â |
8 | C Compatibility | ||||
8.1 | Additions to header <complex> | done | Â | Â | Â |
8.1.1 | Synopsis | done | Â | Â | Â |
8.1.2 | Function acos | done | Â | Â | Â |
8.1.3 | Function asin | done | Â | Â | Â |
8.1.4 | Function atan | done | Â | Â | Â |
8.1.5 | Function acosh | done | Â | Â | Â |
8.1.6 | Function asinh | done | Â | Â | Â |
8.1.7 | Function atanh | done | Â | Â | Â |
8.1.8 | Function fabs | done | Â | Â | Â |
8.1.9 | Additional Overloads | done | Â | Â | Â |
8.2 | Header <ccomplex> | Â | Â | missing | DR 551 |
8.3 | Header <complex.h> | Â | Â | missing | DR 551 |
8.4 | Additions to header <cctype> | done | Â | Â | Â |
8.4.1 | Synopsis | done | Â | Â | Â |
8.4.2 | Function isblank | done | Â | Â | Â |
8.5 | Additions to header <ctype.h> | done | Â | Â | Â |
8.6 | Header <cfenv> | done | Â | Â | Â |
8.6.1 | Synopsis | done | Â | Â | Â |
8.6.2 | Definitions | done | Â | Â | Â |
8.7 | Header <fenv.h> | done | Â | Â | Â |
8.8 | Additions to header <cfloat> | done | Â | Â | Â |
8.9 | Additions to header <float.h> | done | Â | Â | Â |
8.10 | Additions to header <ios> | Â | Â | missing | Â |
8.10.1 | Synopsis | Â | Â | missing | Â |
8.10.2 | Function hexfloat | Â | Â | missing | Â |
8.11 | Header <cinttypes> | done | Â | Â | Â |
8.11.1 | Synopsis | done | Â | Â | DR 557 |
8.11.2 | Definitions | done | Â | Â | Â |
8.12 | Header <inttypes.h> | done | Â | Â | Â |
8.13 | Additions to header <climits> | done | Â | Â | Â |
8.14 | Additions to header <limits.h> | done | Â | Â | Â |
8.15 | Additions to header <locale> | Â | Â | missing | Â |
8.16 | Additions to header <cmath> | done | Â | Â | Â |
8.16.1 | Synopsis | done | Â | Â | Â |
8.16.2 | Definitions | done | Â | Â | Â |
8.16.3 | Function template definitions | done | Â | Â | Â |
8.16.4 | Additional overloads | done | Â | Â | DR 568; DR 550 |
8.17 | Additions to header <math.h> | done | Â | Â | Â |
8.18 | Additions to header <cstdarg> | done | Â | Â | Â |
8.19 | Additions to header <stdarg.h> | done | Â | Â | Â |
8.20 | The header <cstdbool> | done | Â | Â | Â |
8.21 | The header <stdbool.h> | done | Â | Â | Â |
8.22 | The header <cstdint> | done | Â | Â | Â |
8.22.1 | Synopsis | done | Â | Â | Â |
8.22.2 | Definitions | done | Â | Â | Â |
8.23 | The header <stdint.h> | done | Â | Â | Â |
8.24 | Additions to header <cstdio> | done | Â | Â | Â |
8.24.1 | Synopsis | done | Â | Â | Â |
8.24.2 | Definitions | done | Â | Â | Â |
8.24.3 | Additional format specifiers | done | Â | Â | C library responsibility |
8.24.4 | Additions to header <stdio.h> | done | Â | Â | Â |
8.25 | Additions to header <cstdlib> | done | Â | Â | Â |
8.25.1 | Synopsis | done | Â | Â | Â |
8.25.2 | Definitions | done | Â | Â | Â |
8.25.3 | Function abs | done | Â | Â | Â |
8.25.4 | Function div | done | Â | Â | Â |
8.26 | Additions to header <stdlib.h> | done | Â | Â | Â |
8.27 | Header <ctgmath> | done | Â | Â | DR 551 |
8.28 | Header <tgmath.h> | done | Â | Â | DR 551 |
8.29 | Additions to header <ctime> | done | Â | Â | C library responsibility |
8.30 | Additions to header <cwchar> | done | Â | Â | Â |
8.30.1 | Synopsis | done | Â | Â | Â |
8.30.2 | Definitions | done | Â | Â | Â |
8.30.3 | Additional wide format specifiers | done | Â | Â | C library responsibility |
8.31 | Additions to header <wchar.h> | done | Â | Â | Â |
8.32 | Additions to header <cwctype> | done | Â | Â | Â |
8.32.1 | Synopsis | done | Â | Â | Â |
8.32.2 | Function iswblank | done | Â | Â | Â |
8.33 | Additions to header <wctype.h> | done | Â | Â | Â |
+
Table 1.1. C++ TR1 Implementation Status
Section | Description | Done | Broken | Missing | Comments |
---|---|---|---|---|---|
2 | General Utilities | ||||
2.1 | Reference wrappers | done | Â | Â | Â |
2.1.1 | Additions to header <functional> synopsis | done | Â | Â | Â |
2.1.2 | Class template reference_wrapper | done | Â | Â | Â |
2.1.2.1 | reference_wrapper construct/copy/destroy | done | Â | Â | Â |
2.1.2.2 | reference_wrapper assignment | done | Â | Â | Â |
2.1.2.3 | reference_wrapper access | done | Â | Â | Â |
2.1.2.4 | reference_wrapper invocation | done | Â | Â | Â |
2.1.2.5 | reference_wrapper helper functions | done | Â | Â | Â |
2.2 | Smart pointers | done | Â | Â | Â |
2.2.1 | Additions to header <memory> synopsis | done | Â | Â | Â |
2.2.2 | Class bad_weak_ptr | done | Â | Â | Â |
2.2.3 | Class template shared_ptr | done | Â | Â | See Footnotes |
2.2.3.1 | shared_ptr constructors | done | Â | Â | Â |
2.2.3.2 | shared_ptr destructor | done | Â | Â | Â |
2.2.3.3 | shared_ptr assignment | done | Â | Â | Â |
2.2.3.4 | shared_ptr modifiers | done | Â | Â | Â |
2.2.3.5 | shared_ptr observers | done | Â | Â | Â |
2.2.3.6 | shared_ptr comparison | done | Â | Â | Â |
2.2.3.7 | shared_ptr I/O | done | Â | Â | Â |
2.2.3.8 | shared_ptr specialized algorithms | done | Â | Â | Â |
2.2.3.9 | shared_ptr casts | done | Â | Â | Â |
2.2.3.10 | get_deleter | done | Â | Â | Â |
2.2.4 | Class template weak_ptr | done | Â | Â | Â |
2.2.4.1 | weak_ptr constructors | done | Â | Â | Â |
2.2.4.2 | weak_ptr destructor | done | Â | Â | Â |
2.2.4.3 | weak_ptr assignment | done | Â | Â | Â |
2.2.4.4 | weak_ptr modifiers | done | Â | Â | Â |
2.2.4.5 | weak_ptr observers | done | Â | Â | Â |
2.2.4.6 | weak_ptr comparison | done | Â | Â | Â |
2.2.4.7 | weak_ptr specialized algorithms | done | Â | Â | Â |
2.2.5 | Class template enable_shared_from_this | done | Â | Â | Â |
3 | Function Objects | ||||
3.1 | Definitions | done | Â | Â | Â |
3.2 | Additions to <functional> synopsis | done | Â | Â | Â |
3.3 | Requirements | done | Â | Â | Â |
3.4 | Function return types | done | Â | Â | Â |
3.5 | Function template mem_fn | done | Â | Â | Â |
3.6 | Function object binders | done | Â | Â | Â |
3.6.1 | Class template is_bind_expression | done | Â | Â | Â |
3.6.2 | Class template is_placeholder | done | Â | Â | Â |
3.6.3 | Function template bind | done | Â | Â | Â |
3.6.4 | Placeholders | done | Â | Â | Â |
3.7 | Polymorphic function wrappers | done | Â | Â | Â |
3.7.1 | Class bad_function_call | done | Â | Â | Â |
3.7.1.1 | bad_function_call constructor | done | Â | Â | Â |
3.7.2 | Class template function | done | Â | Â | Â |
3.7.2.1 | function construct/copy/destroy | done | Â | Â | Â |
3.7.2.2 | function modifiers | done | Â | Â | Â |
3.7.2.3 | function capacity | done | Â | Â | Â |
3.7.2.4 | function invocation | done | Â | Â | Â |
3.7.2.5 | function target access | done | Â | Â | Â |
3.7.2.6 | undefined operators | done | Â | Â | Â |
3.7.2.7 | null pointer comparison operators | done | Â | Â | Â |
3.7.2.8 | specialized algorithms | done | Â | Â | Â |
4 | Metaprogramming and type traits | ||||
4.1 | Requirements | done | Â | Â | Â |
4.2 | Header <type_traits> synopsis | done | Â | Â | Â |
4.3 | Helper classes | done | Â | Â | Â |
4.4 | General Requirements | done | Â | Â | Â |
4.5 | Unary Type Traits | done | Â | Â | Â |
4.5.1 | Primary Type Categories | done | Â | Â | Â |
4.5.2 | Composite type traits | done | Â | Â | Â |
4.5.3 | Type properties | done | Â | Â | Â |
4.6 | Relationships between types | done | Â | Â | Â |
4.7 | Transformations between types | done | Â | Â | Â |
4.7.1 | Const-volatile modifications | done | Â | Â | Â |
4.7.2 | Reference modifications | done | Â | Â | Â |
4.7.3 | Array modifications | done | Â | Â | Â |
4.7.4 | Pointer modifications | done | Â | Â | Â |
4.8 | Other transformations | done | Â | Â | Â |
4.9 | Implementation requirements | done | Â | Â | Â |
5 | Numerical Facilities | ||||
5.1 | Random number generation | done | Â | Â | Â |
5.1.1 | Requirements | done | Â | Â | Â |
5.1.2 | Header <random> synopsis | done | Â | Â | Â |
5.1.3 | Class template variate_generator | done | Â | Â | Â |
5.1.4 | Random number engine class templates | done | Â | Â | Â |
5.1.4.1 | Class template linear_congruential | done | Â | Â | Â |
5.1.4.2 | Class template mersenne_twister | done | Â | Â | Â |
5.1.4.3 | Class template subtract_with_carry | done | Â | Â | Â |
5.1.4.4 | Class template subtract_with_carry_01 | done | Â | Â | Â |
5.1.4.5 | Class template discard_block | done | Â | Â | Â |
5.1.4.6 | Class template xor_combine | done | Â | Â | operator()() per N2079 |
5.1.5 | Engines with predefined parameters | done | Â | Â | Â |
5.1.6 | Class random_device | done | Â | Â | Â |
5.1.7 | Random distribution class templates | done | Â | Â | Â |
5.1.7.1 | Class template uniform_int | done | Â | Â | Â |
5.1.7.2 | Class bernoulli_distribution | done | Â | Â | Â |
5.1.7.3 | Class template geometric_distribution | done | Â | Â | Â |
5.1.7.4 | Class template poisson_distribution | done | Â | Â | Â |
5.1.7.5 | Class template binomial_distribution | done | Â | Â | Â |
5.1.7.6 | Class template uniform_real | done | Â | Â | Â |
5.1.7.7 | Class template exponential_distribution | done | Â | Â | Â |
5.1.7.8 | Class template normal_distribution | done | Â | Â | Â |
5.1.7.9 | Class template gamma_distribution | done | Â | Â | Â |
5.2 | Mathematical special functions | done | Â | Â | Â |
5.2.1 | Additions to header <cmath> synopsis | done | Â | Â | Â |
5.2.1.1 | associated Laguerre polynomials | done | Â | Â | Â |
5.2.1.2 | associated Legendre functions | done | Â | Â | Â |
5.2.1.3 | beta function | done | Â | Â | Â |
5.2.1.4 | (complete) elliptic integral of the first kind | done | Â | Â | Â |
5.2.1.5 | (complete) elliptic integral of the second kind | done | Â | Â | Â |
5.2.1.6 | (complete) elliptic integral of the third kind | done | Â | Â | Â |
5.2.1.7 | confluent hypergeometric functions | done | Â | Â | Â |
5.2.1.8 | regular modified cylindrical Bessel functions | done | Â | Â | Â |
5.2.1.9 | cylindrical Bessel functions (of the first kind) | done | Â | Â | Â |
5.2.1.10 | irregular modified cylindrical Bessel functions | done | Â | Â | Â |
5.2.1.11 | cylindrical Neumann functions | done | Â | Â | Â |
5.2.1.12 | (incomplete) elliptic integral of the first kind | done | Â | Â | Â |
5.2.1.13 | (incomplete) elliptic integral of the second kind | done | Â | Â | Â |
5.2.1.14 | (incomplete) elliptic integral of the third kind | done | Â | Â | Â |
5.2.1.15 | exponential integral | done | Â | Â | Â |
5.2.1.16 | Hermite polynomials | done | Â | Â | Â |
5.2.1.17 | hypergeometric functions | done | Â | Â | Â |
5.2.1.18 | Laguerre polynomials | done | Â | Â | Â |
5.2.1.19 | Legendre polynomials | done | Â | Â | Â |
5.2.1.20 | Riemann zeta function | done | Â | Â | Â |
5.2.1.21 | spherical Bessel functions (of the first kind) | done | Â | Â | Â |
5.2.1.22 | spherical associated Legendre functions | done | Â | Â | Â |
5.2.1.23 | spherical Neumann functions | done | Â | Â | Â |
5.2.2 | Additions to header <math.h> synopsis | done | Â | Â | Â |
6 | Containers | ||||
6.1 | Tuple types | done | Â | Â | Â |
6.1.1 | Header <tuple> synopsis | done | Â | Â | Â |
6.1.2 | Additions to header <utility> synopsis | done | Â | Â | Â |
6.1.3 | Class template tuple | done | Â | Â | Â |
6.1.3.1 | Construction | done | Â | Â | Â |
6.1.3.2 | Tuple creation functions | done | Â | Â | Â |
6.1.3.3 | Tuple helper classes | done | Â | Â | Â |
6.1.3.4 | Element access | done | Â | Â | Â |
6.1.3.5 | Relational operators | done | Â | Â | Â |
6.1.4 | Pairs | done | Â | Â | Â |
6.2 | Fixed size array | done | Â | Â | Â |
6.2.1 | Header <array> synopsis | done | Â | Â | Â |
6.2.2 | Class template array | done | Â | Â | Â |
6.2.2.1 | array constructors, copy, and assignment | done | Â | Â | Â |
6.2.2.2 | array specialized algorithms | done | Â | Â | Â |
6.2.2.3 | array size | done | Â | Â | Â |
6.2.2.4 | Zero sized array s | done | Â | Â | Â |
6.2.2.5 | Tuple interface to class template array | done | Â | Â | Â |
6.3 | Unordered associative containers | done | Â | Â | Â |
6.3.1 | Unordered associative container requirements | done | Â | Â | Â |
6.3.1.1 | Exception safety guarantees | done | Â | Â | Â |
6.3.2 | Additions to header <functional> synopsis | done | Â | Â | Â |
6.3.3 | Class template hash | done | Â | Â | Â |
6.3.4 | Unordered associative container classes | done | Â | Â | Â |
6.3.4.1 | Header <unordered_set> synopsis | done | Â | Â | Â |
6.3.4.2 | Header <unordered_map> synopsis | done | Â | Â | Â |
6.3.4.3 | Class template unordered_set | done | Â | Â | Â |
6.3.4.3.1 | unordered_set constructors | done | Â | Â | Â |
6.3.4.3.2 | unordered_set swap | done | Â | Â | Â |
6.3.4.4 | Class template unordered_map | done | Â | Â | Â |
6.3.4.4.1 | unordered_map constructors | done | Â | Â | Â |
6.3.4.4.2 | unordered_map element access | done | Â | Â | Â |
6.3.4.4.3 | unordered_map swap | done | Â | Â | Â |
6.3.4.5 | Class template unordered_multiset | done | Â | Â | Â |
6.3.4.5.1 | unordered_multiset constructors | done | Â | Â | Â |
6.3.4.5.2 | unordered_multiset swap | done | Â | Â | Â |
6.3.4.6 | Class template unordered_multimap | done | Â | Â | Â |
6.3.4.6.1 | unordered_multimap constructors | done | Â | Â | Â |
6.3.4.6.2 | unordered_multimap swap | done | Â | Â | Â |
7 | Regular Expressions | ||||
7.1 | Definitions | Â | Â | missing | Â |
7.2 | Requirements | Â | Â | missing | Â |
7.3 | Regular expressions summary | Â | Â | missing | Â |
7.4 | Header <regex> synopsis | Â | Â | missing | Â |
7.5 | Namespace tr1::regex_constants | Â | Â | missing | Â |
7.5.1 | Bitmask Type syntax_option_type | Â | Â | missing | Â |
7.5.2 | Bitmask Type regex_constants::match_flag_type | Â | Â | missing | Â |
7.5.3 | Implementation defined error_type | Â | Â | missing | Â |
7.6 | Class regex_error | Â | Â | missing | Â |
7.7 | Class template regex_traits | Â | Â | missing | Â |
7.8 | Class template basic_regex | Â | Â | missing | Â |
7.8.1 | basic_regex constants | Â | Â | missing | Â |
7.8.2 | basic_regex constructors | Â | Â | missing | Â |
7.8.3 | basic_regex assign | Â | Â | missing | Â |
7.8.4 | basic_regex constant operations | Â | Â | missing | Â |
7.8.5 | basic_regex locale | Â | Â | missing | Â |
7.8.6 | basic_regex swap | Â | Â | missing | Â |
7.8.7 | basic_regex non-member functions | Â | Â | missing | Â |
7.8.7.1 | basic_regex non-member swap | Â | Â | missing | Â |
7.9 | Class template sub_match | Â | Â | missing | Â |
7.9.1 | sub_match members | Â | Â | missing | Â |
7.9.2 | sub_match non-member operators | Â | Â | missing | Â |
7.10 | Class template match_results | Â | Â | missing | Â |
7.10.1 | match_results constructors | Â | Â | missing | Â |
7.10.2 | match_results size | Â | Â | missing | Â |
7.10.3 | match_results element access | Â | Â | missing | Â |
7.10.4 | match_results formatting | Â | Â | missing | Â |
7.10.5 | match_results allocator | Â | Â | missing | Â |
7.10.6 | match_results swap | Â | Â | missing | Â |
7.11 | Regular expression algorithms | Â | Â | missing | Â |
7.11.1 | exceptions | Â | Â | missing | Â |
7.11.2 | regex_match | Â | Â | missing | Â |
7.11.3 | regex_search | Â | Â | missing | Â |
7.11.4 | regex_replace | Â | Â | missing | Â |
7.12 | Regular expression Iterators | Â | Â | missing | Â |
7.12.1 | Class template regex_iterator | Â | Â | missing | Â |
7.12.1.1 | regex_iterator constructors | Â | Â | missing | Â |
7.12.1.2 | regex_iterator comparisons | Â | Â | missing | Â |
7.12.1.3 | regex_iterator dereference | Â | Â | missing | Â |
7.12.1.4 | regex_iterator increment | Â | Â | missing | Â |
7.12.2 | Class template regex_token_iterator | Â | Â | missing | Â |
7.12.2.1 | regex_token_iterator constructors | Â | Â | missing | Â |
7.12.2.2 | regex_token_iterator comparisons | Â | Â | missing | Â |
7.12.2.3 | regex_token_iterator dereference | Â | Â | missing | Â |
7.12.2.4 | regex_token_iterator increment | Â | Â | missing | Â |
7.13 | Modified ECMAScript regular expression grammar | Â | Â | missing | Â |
8 | C Compatibility | ||||
8.1 | Additions to header <complex> | done | Â | Â | Â |
8.1.1 | Synopsis | done | Â | Â | Â |
8.1.2 | Function acos | done | Â | Â | Â |
8.1.3 | Function asin | done | Â | Â | Â |
8.1.4 | Function atan | done | Â | Â | Â |
8.1.5 | Function acosh | done | Â | Â | Â |
8.1.6 | Function asinh | done | Â | Â | Â |
8.1.7 | Function atanh | done | Â | Â | Â |
8.1.8 | Function fabs | done | Â | Â | Â |
8.1.9 | Additional Overloads | done | Â | Â | Â |
8.2 | Header <ccomplex> | Â | Â | missing | DR 551 |
8.3 | Header <complex.h> | Â | Â | missing | DR 551 |
8.4 | Additions to header <cctype> | done | Â | Â | Â |
8.4.1 | Synopsis | done | Â | Â | Â |
8.4.2 | Function isblank | done | Â | Â | Â |
8.5 | Additions to header <ctype.h> | done | Â | Â | Â |
8.6 | Header <cfenv> | done | Â | Â | Â |
8.6.1 | Synopsis | done | Â | Â | Â |
8.6.2 | Definitions | done | Â | Â | Â |
8.7 | Header <fenv.h> | done | Â | Â | Â |
8.8 | Additions to header <cfloat> | done | Â | Â | Â |
8.9 | Additions to header <float.h> | done | Â | Â | Â |
8.10 | Additions to header <ios> | Â | Â | missing | Â |
8.10.1 | Synopsis | Â | Â | missing | Â |
8.10.2 | Function hexfloat | Â | Â | missing | Â |
8.11 | Header <cinttypes> | done | Â | Â | Â |
8.11.1 | Synopsis | done | Â | Â | DR 557 |
8.11.2 | Definitions | done | Â | Â | Â |
8.12 | Header <inttypes.h> | done | Â | Â | Â |
8.13 | Additions to header <climits> | done | Â | Â | Â |
8.14 | Additions to header <limits.h> | done | Â | Â | Â |
8.15 | Additions to header <locale> | Â | Â | missing | Â |
8.16 | Additions to header <cmath> | done | Â | Â | Â |
8.16.1 | Synopsis | done | Â | Â | Â |
8.16.2 | Definitions | done | Â | Â | Â |
8.16.3 | Function template definitions | done | Â | Â | Â |
8.16.4 | Additional overloads | done | Â | Â | DR 568; DR 550 |
8.17 | Additions to header <math.h> | done | Â | Â | Â |
8.18 | Additions to header <cstdarg> | done | Â | Â | Â |
8.19 | Additions to header <stdarg.h> | done | Â | Â | Â |
8.20 | The header <cstdbool> | done | Â | Â | Â |
8.21 | The header <stdbool.h> | done | Â | Â | Â |
8.22 | The header <cstdint> | done | Â | Â | Â |
8.22.1 | Synopsis | done | Â | Â | Â |
8.22.2 | Definitions | done | Â | Â | Â |
8.23 | The header <stdint.h> | done | Â | Â | Â |
8.24 | Additions to header <cstdio> | done | Â | Â | Â |
8.24.1 | Synopsis | done | Â | Â | Â |
8.24.2 | Definitions | done | Â | Â | Â |
8.24.3 | Additional format specifiers | done | Â | Â | C library responsibility |
8.24.4 | Additions to header <stdio.h> | done | Â | Â | Â |
8.25 | Additions to header <cstdlib> | done | Â | Â | Â |
8.25.1 | Synopsis | done | Â | Â | Â |
8.25.2 | Definitions | done | Â | Â | Â |
8.25.3 | Function abs | done | Â | Â | Â |
8.25.4 | Function div | done | Â | Â | Â |
8.26 | Additions to header <stdlib.h> | done | Â | Â | Â |
8.27 | Header <ctgmath> | done | Â | Â | DR 551 |
8.28 | Header <tgmath.h> | done | Â | Â | DR 551 |
8.29 | Additions to header <ctime> | done | Â | Â | C library responsibility |
8.30 | Additions to header <cwchar> | done | Â | Â | Â |
8.30.1 | Synopsis | done | Â | Â | Â |
8.30.2 | Definitions | done | Â | Â | Â |
8.30.3 | Additional wide format specifiers | done | Â | Â | C library responsibility |
8.31 | Additions to header <wchar.h> | done | Â | Â | Â |
8.32 | Additions to header <cwctype> | done | Â | Â | Â |
8.32.1 | Synopsis | done | Â | Â | Â |
8.32.2 | Function iswblank | done | Â | Â | Â |
8.33 | Additions to header <wctype.h> | done | Â | Â | Â |
Footnotes
The shared_ptr implementation uses some code from the @@ -6120,7 +6120,7 @@ presence of the required flag.
This page describes the C++0x support in mainline GCC SVN, not in any particular release. -
Table 1.2. C++ 200x Implementation Status
Section | Description | Done | Broken | Missing | Comments | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
20 | General Utilities | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.2 | Utility Components | Â | Â | incomplete | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.2.1 | Operators | Â | Â | partial | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.2.2 | forward/move helpers | Â | Â | partial | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.2.3 | Pairs | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.3 | Header <tuple> synopsis | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.3.1 | Class template tuple | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.3.1.1 | Construction | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.3.1.2 | Tuple creation functions | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.3.1.3 | Tuple helper classes | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.3.1.4 | Element access | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.3.1.5 | Relational operators | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.4 | Metaprogramming and type traits | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.4.1 | Requirements | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.4.2 | Header <type_traits> synopsis | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.4.3 | Helper classes | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.4.4 | General Requirements | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.4.5 | Unary Type Traits | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.4.5.1 | Primary Type Categories | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.4.5.2 | Composite type traits | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.4.5.3 | Type properties | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.4.6 | Relationships between types | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.4.7 | Transformations between types | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.4.7.1 | Const-volatile modifications | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.4.7.2 | Reference modifications | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.4.7.3 | Array modifications | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.4.7.4 | Pointer modifications | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.4.8 | Other transformations | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.4.9 | Implementation requirements | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5 | Function Objects | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5 | Additions to header <functional> synopsis | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.1 | Definitions | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.2 | Requirements | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.3 | Base | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.4 | Function return types | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.5 | Class template reference_wrapper | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.5.1 | reference_wrapper construct/copy/destroy | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.5.2 | reference_wrapper assignment | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.5.3 | reference_wrapper access | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.5.4 | reference_wrapper invocation | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.5.5 | reference_wrapper helper functions | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.14 | Function template mem_fn | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.11 | Template function bind | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.11.1 | Function object binders | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.11.1.1 | Class template is_bind_expression | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.11.1.2 | Class template is_placeholder | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.11.1.3 | Function template bind | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.11.1.4 | Placeholders | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.15 | Polymorphic function wrappers | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.15.1 | Class bad_function_call | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.15.1.1 | bad_function_call constructor | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.15.2 | Class template function | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.15.2.1 | function construct/copy/destroy | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.15.2.2 | function modifiers | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.15.2.3 | function capacity | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.15.2.4 | function invocation | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.15.2.5 | function target access | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.15.2.7 | null pointer comparison operators | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.15.2.8 | specialized algorithms | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.5.16 | Class template hash | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.6 | Additions to header <memory> synopsis | Â | Â | partial | missing unique_ptr | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.6.5 | Class template unique_ptr | Â | Â | missing | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.6.6 | Smart pointers | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.6.6.1 | Class bad_weak_ptr | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.6.6.2 | Class template shared_ptr | done | Â | Â | See Footnotes. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.6.6.2.1 | shared_ptr constructors | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.6.6.2.2 | shared_ptr destructor | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.6.6.2.3 | shared_ptr assignment | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.6.6.2.4 | shared_ptr modifiers | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.6.6.2.5 | shared_ptr observers | done | Â | Â | Â | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20.6.6.2.6 | shared_ptr creation | done | Â | Â |
+ Table 1.2. C++ 200x Implementation Status
Footnotes diff --git a/libstdc++-v3/doc/html/manual/bk01pt01ch03s02.html b/libstdc++-v3/doc/html/manual/bk01pt01ch03s02.html index 7065e20c876..ba8763dec0e 100644 --- a/libstdc++-v3/doc/html/manual/bk01pt01ch03s02.html +++ b/libstdc++-v3/doc/html/manual/bk01pt01ch03s02.html @@ -20,14 +20,14 @@ upcoming 200x standard.
C++98/03 include files. These are available in the default compilation mode, i.e. Table 3.1. C++ 1998 Library Headers
Table 3.2. C++ 1998 Library Headers for C Library Facilities
C++0x include files. These are only available in C++0x compilation mode, i.e. Table 3.3. C++ 200x Library Headers
Table 3.4. C++ 200x Library Headers for C Library Facilities
+ Table 3.1. C++ 1998 Library Headers
Table 3.2. C++ 1998 Library Headers for C Library Facilities
C++0x include files. These are only available in C++0x compilation mode, i.e. Table 3.3. C++ 200x Library Headers
Table 3.4. C++ 200x Library Headers for C Library Facilities
In addition, TR1 includes as: - Table 3.5. C++ TR1 Library Headers
Table 3.6. C++ TR1 Library Headers for C Library Facilities
+ Table 3.5. C++ TR1 Library Headers
Table 3.6. C++ TR1 Library Headers for C Library Facilities
Also included are files for the C++ ABI interface: - + And a large variety of extensions. - Table 3.8. Extension Headers
Table 3.9. Extension Debug Headers
A few simple rules. + Table 3.8. Extension Headers
Table 3.9. Extension Debug Headers
A few simple rules. First, mixing different dialects of the standard headers is not possible. It's an all-or-nothing affair. Thus, code like diff --git a/libstdc++-v3/doc/html/manual/bk01pt02pr01.html b/libstdc++-v3/doc/html/manual/bk01pt02pr01.html index 2d36c3f072f..6f7451e9ae7 100644 --- a/libstdc++-v3/doc/html/manual/bk01pt02pr01.html +++ b/libstdc++-v3/doc/html/manual/bk01pt02pr01.html @@ -1,6 +1,6 @@ - |