Classes | |
struct | Char_types |
Mapping from character type to associated types. More... | |
struct | char_traits |
Base class used to implement std::char_traits. More... | |
class | debug_allocator |
A meta-allocator with debugging bits, as per [20.4]. More... | |
class | unary_compose |
An SGI extension . More... | |
class | binary_compose |
An SGI extension . More... | |
struct | select1st |
An SGI extension . More... | |
struct | select2nd |
An SGI extension . More... | |
struct | project1st |
An SGI extension . More... | |
struct | project2nd |
An SGI extension . More... | |
struct | constant_void_fun |
An SGI extension . More... | |
struct | constant_unary_fun |
An SGI extension . More... | |
struct | constant_binary_fun |
An SGI extension . More... | |
class | subtractive_rng |
class | hash_map |
class | hash_multimap |
class | hash_set |
class | hash_multiset |
class | malloc_allocator |
An allocator that uses malloc. More... | |
struct | temporary_buffer |
class | __mt_alloc |
class | new_allocator |
An allocator that uses global new, as per [20.4]. More... | |
class | __pool_alloc_base |
struct | rb_tree |
class | rope |
class | slist |
class | stdio_filebuf |
Provides a layer of compatibility for C/POSIX. More... | |
Functions | |
void | __verbose_terminate_handler () |
template<typename InputIterator, typename Size, typename OutputIterator> | |
pair< InputIterator, OutputIterator > | copy_n (InputIterator first, Size count, OutputIterator __result) |
Copies the range [first,first+count) into [result,result+count). | |
template<typename InputIterator1, typename InputIterator2> | |
int | lexicographical_compare_3way (InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2) |
memcmp on steroids. | |
template<typename ForwardIterator, typename OutputIterator, typename Distance> | |
OutputIterator | random_sample_n (ForwardIterator first, ForwardIterator last, OutputIterator out, const Distance n) |
template<typename ForwardIterator, typename OutputIterator, typename Distance, typename RandomNumberGenerator> | |
OutputIterator | random_sample_n (ForwardIterator first, ForwardIterator last, OutputIterator out, const Distance n, RandomNumberGenerator &__rand) |
template<typename InputIterator, typename RandomAccessIterator> | |
RandomAccessIterator | random_sample (InputIterator first, InputIterator last, RandomAccessIterator out_first, RandomAccessIterator out_last) |
template<typename InputIterator, typename RandomAccessIterator, typename RandomNumberGenerator> | |
RandomAccessIterator | random_sample (InputIterator first, InputIterator last, RandomAccessIterator out_first, RandomAccessIterator out_last, RandomNumberGenerator &__rand) |
template<typename RandomAccessIterator> | |
bool | is_heap (RandomAccessIterator first, RandomAccessIterator last) |
template<typename RandomAccessIterator, typename StrictWeakOrdering> | |
bool | is_heap (RandomAccessIterator first, RandomAccessIterator last, StrictWeakOrdering comp) |
template<typename ForwardIterator> | |
bool | is_sorted (ForwardIterator first, ForwardIterator last) |
template<typename ForwardIterator, typename StrictWeakOrdering> | |
bool | is_sorted (ForwardIterator first, ForwardIterator last, StrictWeakOrdering comp) |
template<class Type> | |
Type | identity_element (std::plus< Type >) |
An SGI extension . | |
template<class Type> | |
Type | identity_element (std::multiplies< Type >) |
An SGI extension . | |
template<class Operation1, class Operation2> | |
unary_compose< Operation1, Operation2 > | compose1 (const Operation1 &__fn1, const Operation2 &__fn2) |
An SGI extension . | |
template<class Operation1, class Operation2, class Operation3> | |
binary_compose< Operation1, Operation2, Operation3 > | compose2 (const Operation1 &__fn1, const Operation2 &__fn2, const Operation3 &__fn3) |
An SGI extension . | |
template<class Result> | |
constant_void_fun< Result > | constant0 (const Result &__val) |
An SGI extension . | |
template<class Result> | |
constant_unary_fun< Result, Result > | constant1 (const Result &__val) |
An SGI extension . | |
template<class Result> | |
constant_binary_fun< Result, Result, Result > | constant2 (const Result &__val) |
An SGI extension . | |
template<typename InputIterator, typename Distance> | |
void | distance (InputIterator first, InputIterator last, Distance &n) |
template<typename InputIter, typename Size, typename ForwardIter> | |
pair< InputIter, ForwardIter > | uninitialized_copy_n (InputIter first, Size count, ForwardIter __result) |
Copies the range [first,last) into result. | |
template<typename Type, typename Integer, typename MonoidOperation> | |
Type | power (Type x, Integer n, MonoidOperation __monoid_op) |
template<typename Type, typename Integer> | |
Type | power (Type x, Integer n) |
template<typename ForwardIter, typename Type> | |
void | iota (ForwardIter first, ForwardIter last, Type value) |
This namespace is used for two things:
This is still fluid and changing rapidly. Currently the rule is: if an entitity is found in the user-level documentation, it falls into the second category.
|
A replacement for the standard terminate_handler which prints more information about the terminating exception (if any) on stderr. Call to use. For more info, see http://gcc.gnu.org/onlinedocs/libstdc++/19_diagnostics/howto.html#4In 3.4 and later, this is on by default. |