diff options
Diffstat (limited to 'libstdc++-v3/docs/html/ext/howto.html')
| -rw-r--r-- | libstdc++-v3/docs/html/ext/howto.html | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/libstdc++-v3/docs/html/ext/howto.html b/libstdc++-v3/docs/html/ext/howto.html index 3171355ff87..2e88c660a61 100644 --- a/libstdc++-v3/docs/html/ext/howto.html +++ b/libstdc++-v3/docs/html/ext/howto.html @@ -74,18 +74,13 @@ are deprecated but available as backwards-compatible extensions, as discussed further below. <code><rope></code> is the SGI specialization for large strings ("rope," - "large strings," get it? love those SGI folks). + "large strings," get it? Love that geeky humor.) <code><slist></code> is a singly-linked list, for when the doubly-linked <code>list<></code> is too much space overhead, and <code><rb_tree></code> exposes the red-black tree classes used in the implementation of the standard maps and sets. </p> - <p>Okay, about those hashing classes... these classes have been - deprecated by the unordered_set, unordered_multiset, unordered_map, - unordered_multimap containers in TR1 and the upcoming C++0x, and - may be removed in future releases. - </p> <p>Each of the associative containers map, multimap, set, and multiset have a counterpart which uses a <a href="http://www.sgi.com/tech/stl/HashFunction.html">hashing @@ -111,11 +106,13 @@ components, and if you aren't scared about the possibility of pathological cases, you'll probably get better performance from hash_map.</em></blockquote> - <p>(Side note: for those of you wondering, <strong>"Why wasn't a hash - table included in the Standard in the first #!$@ place?"</strong> - I'll give a quick answer: it was proposed, but too late and in too - unorganized a fashion.) + + <p>Okay, about the SGI hashing classes... these classes have been + deprecated by the unordered_set, unordered_multiset, unordered_map, + unordered_multimap containers in TR1 and the upcoming C++0x, and + may be removed in future releases. </p> + <p>Return <a href="#top">to top of page</a> or <a href="../faq/index.html">to the FAQ</a>. </p> |

