mirror of
https://github.com/boostorg/algorithm.git
synced 2025-07-30 04:27:16 +02:00
- join and lexicographical_compare added to the quickref
- join.hpp added to jambfil [SVN r33406]
This commit is contained in:
@ -32,6 +32,7 @@ doxygen autodoc
|
|||||||
[ glob ../../../../boost/algorithm/string/predicate.hpp ]
|
[ glob ../../../../boost/algorithm/string/predicate.hpp ]
|
||||||
[ glob ../../../../boost/algorithm/string/split.hpp ]
|
[ glob ../../../../boost/algorithm/string/split.hpp ]
|
||||||
[ glob ../../../../boost/algorithm/string/erase.hpp ]
|
[ glob ../../../../boost/algorithm/string/erase.hpp ]
|
||||||
|
[ glob ../../../../boost/algorithm/string/join.hpp ]
|
||||||
[ glob ../../../../boost/algorithm/string/replace.hpp ]
|
[ glob ../../../../boost/algorithm/string/replace.hpp ]
|
||||||
[ glob ../../../../boost/algorithm/string/find_format.hpp ]
|
[ glob ../../../../boost/algorithm/string/find_format.hpp ]
|
||||||
[ glob ../../../../boost/algorithm/string/formatter.hpp ]
|
[ glob ../../../../boost/algorithm/string/formatter.hpp ]
|
||||||
|
@ -143,6 +143,16 @@
|
|||||||
<functionname>iequals()</functionname>
|
<functionname>iequals()</functionname>
|
||||||
</entry>
|
</entry>
|
||||||
</row>
|
</row>
|
||||||
|
<row>
|
||||||
|
<entry><code>lexicographical_compare</code></entry>
|
||||||
|
<entry>Check if a string is lexicographicaly less then another one</entry>
|
||||||
|
<entry>
|
||||||
|
<functionname>lexicographical_compare()</functionname>
|
||||||
|
<sbr/>
|
||||||
|
<functionname>ilexicographical_compare()</functionname>
|
||||||
|
</entry>
|
||||||
|
</row>
|
||||||
|
|
||||||
<row>
|
<row>
|
||||||
<entry><code>all</code></entry>
|
<entry><code>all</code></entry>
|
||||||
<entry>Check if all elements of a string satisfy the given predicate</entry>
|
<entry>Check if all elements of a string satisfy the given predicate</entry>
|
||||||
@ -430,6 +440,34 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</tgroup>
|
</tgroup>
|
||||||
</table>
|
</table>
|
||||||
|
<table>
|
||||||
|
<title>Join</title>
|
||||||
|
<tgroup cols="3" align="left">
|
||||||
|
<thead>
|
||||||
|
<row>
|
||||||
|
<entry>Algorithm name</entry>
|
||||||
|
<entry>Description</entry>
|
||||||
|
<entry>Functions</entry>
|
||||||
|
</row>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<row>
|
||||||
|
<entry>join</entry>
|
||||||
|
<entry>Join all elements in a container into a single string</entry>
|
||||||
|
<entry>
|
||||||
|
<functionname>join</functionname>
|
||||||
|
</entry>
|
||||||
|
</row>
|
||||||
|
<row>
|
||||||
|
<entry>join_if</entry>
|
||||||
|
<entry>Join all elements in a container that satisfies the condition into a single string</entry>
|
||||||
|
<entry>
|
||||||
|
<functionname>join_if()</functionname>
|
||||||
|
</entry>
|
||||||
|
</row>
|
||||||
|
</tbody>
|
||||||
|
</tgroup>
|
||||||
|
</table>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<title>Finders and Formatters</title>
|
<title>Finders and Formatters</title>
|
||||||
|
Reference in New Issue
Block a user