diff options
author | Chris Lattner <sabre@nondot.org> | 2011-07-22 20:46:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-07-22 20:46:49 +0000 |
commit | 7314a20a59f60c58011bfcbc936c01a082e1ea3a (patch) | |
tree | 91addf8fa0b66d8b857fe47f860c6fba8e653db0 /docs/ProgrammersManual.html | |
parent | ce501030d9b0213d951fbf05f928ac75b06b5a3a (diff) |
move the section for string-like containers to follow the section for sequential containers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135799 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ProgrammersManual.html')
-rw-r--r-- | docs/ProgrammersManual.html | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index bfa721ddc9..70eaddf725 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -68,6 +68,10 @@ option</a></li> <li><a href="#dss_packedvector">llvm/ADT/PackedVector.h</a></li> <li><a href="#dss_other">Other Sequential Container Options</a></li> </ul></li> + <li><a href="#ds_string">String-like containers</a> + <!--<ul> + todo + </ul>--></li> <li><a href="#ds_set">Set-Like Containers (std::set, SmallSet, SetVector, etc)</a> <ul> <li><a href="#dss_sortedvectorset">A sorted 'vector'</a></li> @@ -92,10 +96,6 @@ option</a></li> <li><a href="#dss_inteqclasses">"llvm/ADT/IntEqClasses.h"</a></li> <li><a href="#dss_othermap">Other Map-Like Container Options</a></li> </ul></li> - <li><a href="#ds_string">String-like containers</a> - <!--<ul> - todo - </ul>--></li> <li><a href="#ds_bit">BitVector-like containers</a> <ul> <li><a href="#dss_bitvector">A dense bitvector</a></li> @@ -1214,6 +1214,21 @@ underlying container but don't affect the cost of the container itself.</p> <!-- ======================================================================= --> <h3> + <a name="ds_string">String-like containers</a> +</h3> + +<div> + +<p> +TODO: const char* vs stringref vs smallstring vs std::string. Describe twine, +xref to #string_apis. +</p> + +</div> + + +<!-- ======================================================================= --> +<h3> <a name="ds_set">Set-Like Containers (std::set, SmallSet, SetVector, etc)</a> </h3> @@ -1655,20 +1670,6 @@ always better.</p> <!-- ======================================================================= --> <h3> - <a name="ds_string">String-like containers</a> -</h3> - -<div> - -<p> -TODO: const char* vs stringref vs smallstring vs std::string. Describe twine, -xref to #string_apis. -</p> - -</div> - -<!-- ======================================================================= --> -<h3> <a name="ds_bit">Bit storage containers (BitVector, SparseBitVector)</a> </h3> |