From b25d6511b369a2ca290ec408ad6f3146148895a9 Mon Sep 17 00:00:00 2001 From: Pavol Droba Date: Fri, 2 Nov 2007 20:55:26 +0000 Subject: [PATCH] merging changes from 1.34 [SVN r40697] --- string/doc/Jamfile.v2 | 1 + string/doc/quickref.xml | 20 +++++++++++++++++--- string/doc/release_notes.xml | 22 ++++++++++++++++++++++ 3 files changed, 40 insertions(+), 3 deletions(-) diff --git a/string/doc/Jamfile.v2 b/string/doc/Jamfile.v2 index be42d64..ac3a43b 100644 --- a/string/doc/Jamfile.v2 +++ b/string/doc/Jamfile.v2 @@ -31,6 +31,7 @@ doxygen autodoc [ glob ../../../../boost/algorithm/string/trim.hpp ] [ glob ../../../../boost/algorithm/string/predicate.hpp ] [ glob ../../../../boost/algorithm/string/split.hpp ] + [ glob ../../../../boost/algorithm/string/iter_find.hpp ] [ glob ../../../../boost/algorithm/string/erase.hpp ] [ glob ../../../../boost/algorithm/string/join.hpp ] [ glob ../../../../boost/algorithm/string/replace.hpp ] diff --git a/string/doc/quickref.xml b/string/doc/quickref.xml index 0972893..3c65ae2 100644 --- a/string/doc/quickref.xml +++ b/string/doc/quickref.xml @@ -151,7 +151,7 @@ lexicographical_compare - Check if a string is lexicographicaly less then another one + Check if a string is lexicographically less then another one lexicographical_compare() @@ -434,7 +434,7 @@ find_all_regex() - + split Split input into parts @@ -442,7 +442,21 @@ split_regex() - + + + iter_find + Iteratively apply the finder to the input to find all matching substrings + + iter_find() + + + + iter_split + Use the finder to find matching substrings in the input and use them as separators to split the input into parts + + iter_split() + + diff --git a/string/doc/release_notes.xml b/string/doc/release_notes.xml index b60b74b..b40504b 100644 --- a/string/doc/release_notes.xml +++ b/string/doc/release_notes.xml @@ -8,6 +8,10 @@ -->
+ + + + Release Notes @@ -19,5 +23,23 @@ 1.33 Internal version of collection traits removed, library adapted to Boost.Range + + 1.34 + + + lexicographical_compare() + + + join() and join_if() + + + New comparison predicates is_less, is_not_greater + + + Negative indexes support (like Perl) in various algorihtms + (*_head/tail, *_nth). + + +