Skip to content

Commit

Permalink
eventually we should describe string options in the data structures s…
Browse files Browse the repository at this point in the history
…ection

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77054 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
lattner committed Jul 25, 2009
1 parent 81187ae commit dced9fb
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docs/ProgrammersManual.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@
<li><a href="#dss_map">&lt;map&gt;</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>
Expand Down Expand Up @@ -833,6 +837,10 @@
iteration, but do not support efficient look-up based on a key.
</li>

<li>a <a href="#ds_string">string</a> container is a specialized sequential
container or reference structure that is used for character or byte
arrays.</li>

<li>a <a href="#ds_bit">bit</a> container provides an efficient way to store and
perform set operations on sets of numeric id's, while automatically
eliminating duplicates. Bit containers require a maximum of 1 bit for each
Expand Down Expand Up @@ -1504,6 +1512,20 @@

</div>

<!-- ======================================================================= -->
<div class="doc_subsection">
<a name="ds_string">String-like containers</a>
</div>

<div class="doc_text">

<p>
TODO: const char* vs stringref vs smallstring vs std::string. Describe twine,
xref to #string_apis.
</p>

</div>

<!-- ======================================================================= -->
<div class="doc_subsection">
<a name="ds_bit">Bit storage containers (BitVector, SparseBitVector)</a>
Expand Down

0 comments on commit dced9fb

Please sign in to comment.