Ticket #1024: string_algo_doc.patch

File string_algo_doc.patch, 1.4 KB (added by Pavol Droba, 15 years ago)
Line 
1Index: Jamfile.v2
2===================================================================
3RCS file: /cvsroot/boost/boost/libs/algorithm/string/doc/Jamfile.v2,v
4retrieving revision 1.8
5diff -r1.8 Jamfile.v2
633a34
7> [ glob ../../../../boost/algorithm/string/iter_find.hpp ]
8Index: quickref.xml
9===================================================================
10RCS file: /cvsroot/boost/boost/libs/algorithm/string/doc/quickref.xml,v
11retrieving revision 1.5.2.1
12diff -r1.5.2.1 quickref.xml
13154c154
14< <entry>Check if a string is lexicographicaly less then another one</entry>
15---
16> <entry>Check if a string is lexicographically less then another one</entry>
17437c437
18< <row>
19---
20> <row>
21445c445,459
22< </row>
23---
24> </row>
25> <row>
26> <entry>iter_find</entry>
27> <entry>Iteratively apply the finder to the input to find all matching substrings</entry>
28> <entry>
29> <functionname>iter_find()</functionname>
30> </entry>
31> </row>
32> <row>
33> <entry>iter_split</entry>
34> <entry>Use the finder to find matching substrings in the input and use them as separators to split the input into parts</entry>
35> <entry>
36> <functionname>iter_split()</functionname>
37> </entry>
38> </row>