Whole document tree SGI extensions to the library in libstdc++-v3This page describes the extensions that SGI made to their version of the STL subset of the Standard C++ Library. For a time we tracked and imported changes and updates from most of the SGI STL, up through their (apparently) final release. Their extensions were mostly preserved. They are listed according to the chapters of the library that they extend (see the chapter-specific notes for a description). Not every chapter may have extensions, and the extensions may come and go. Also, this page is incomplete because the author is pressed for time. Check back often; the latest change was on $Date: 2001/12/13 23:28:39 $ (UTC). Descriptions range from the scanty to the verbose. You should also check the generated documentation for notes and comments, especially for entries marked with '*'. For more complete doumentation, see the SGI website. For really complete documentation, buy a copy of Matt Austern's book. *grin* Back to the libstdc++-v3 extensions. Chapter 20The <functional> header contains many additional functors and helper functions, extending section 20.3. They are implemented in the file stl_function.h:
20.4.1 can use several different allocators; they are described on the main extensions page. 20.4.3 is extended with a special version of
get_temporary_buffer<int>(5);you can also use get_temporary_buffer(5, (int*)0); A class The specialized algorithms of section 20.4.4 are extended with
Return to the main extensions page or to the homepage. Chapter 23A few extensions and nods to backwards-compatibility have been made with containers. Those dealing with older SGI-style allocators are dealt with elsewhere. The remaining ones all deal with bits: The old pre-standard The There are versions of single-bit test, set, reset, and flip member functions which do no range-checking. If we call them member functions of an instantiation of "bitset<N>," then their names and signatures are: bitset<N>& _Unchecked_set (size_t pos); bitset<N>& _Unchecked_set (size_t pos, int val); bitset<N>& _Unchecked_reset (size_t pos); bitset<N>& _Unchecked_flip (size_t pos); bool _Unchecked_test (size_t pos);Note that these may in fact be removed in the future, although we have no present plans to do so (and there doesn't seem to be any immediate reason to).
The semantics of member function Finally, two additional searching functions have been added. They return
the index of the first "on" bit, and the index of the first
"on" bit that is after size_t _Find_first() const; size_t _Find_next (size_t prev) const;The same caveat given for the _Unchecked_* functions applies here also. Return to the main extensions page or to the homepage. Chapter 2424.3.2 describes
24.3.4 describes iterator operation Return to the main extensions page or to the homepage. Chapter 2525.1.6 (count, count_if) is extended with two more versions of count and count_if. The standard versions return their results. The additional signatures return void, but take a final parameter by reference to which they assign their results, e.g., void count (first, last, value, n); 25.2 (mutating algorithms) is extended with two families of signatures, random_sample and random_sample_n. 25.2.1 (copy) is extended with copy_n (_InputIter first, _Size count, _OutputIter result);which copies the first 'count' elements at 'first' into 'result'. 25.3 (sorting 'n' heaps 'n' stuff) is extended with some helper predicates. Look in the doxygen-generated pages for notes on these.
25.3.8 (lexigraphical_compare) is extended with lexicographical_compare_3way(_InputIter1 first1, _InputIter1 last1, _InputIter2 first2, _InputIter2 last2)which does... what? Return to the main extensions page or to the homepage. Chapter 2626.4, the generalized numeric operations such as accumulate, are extended with the following functions: power (x, n); power (x, n, moniod_operation);Returns, in FORTRAN syntax, "x ** n" where n>=0. In the case of n == 0, returns the identity element for the monoid operation. The two-argument signature uses multiplication (for a true "power" implementation), but addition is supported as well. The operation functor must be associative. The void iota(_ForwardIter first, _ForwardIter last, _Tp value); Return to the main extensions page or to the homepage. See license.html for copying conditions. Comments and suggestions are welcome, and may be sent to the libstdc++ mailing list. |