From bd974bb945505aa83836d452c19d48a262c82ea4 Mon Sep 17 00:00:00 2001 From: Pavol Droba Date: Mon, 20 Mar 2006 13:08:13 +0000 Subject: [PATCH] - join and lexicographical_compare added to the quickref - join.hpp added to jambfil [SVN r33406] --- string/doc/Jamfile.v2 | 1 + string/doc/quickref.xml | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) diff --git a/string/doc/Jamfile.v2 b/string/doc/Jamfile.v2 index 2c2c96e..13e0df3 100644 --- a/string/doc/Jamfile.v2 +++ b/string/doc/Jamfile.v2 @@ -32,6 +32,7 @@ doxygen autodoc [ glob ../../../../boost/algorithm/string/predicate.hpp ] [ glob ../../../../boost/algorithm/string/split.hpp ] [ glob ../../../../boost/algorithm/string/erase.hpp ] + [ glob ../../../../boost/algorithm/string/join.hpp ] [ glob ../../../../boost/algorithm/string/replace.hpp ] [ glob ../../../../boost/algorithm/string/find_format.hpp ] [ glob ../../../../boost/algorithm/string/formatter.hpp ] diff --git a/string/doc/quickref.xml b/string/doc/quickref.xml index 51a0114..a6541be 100644 --- a/string/doc/quickref.xml +++ b/string/doc/quickref.xml @@ -143,6 +143,16 @@ iequals() + + lexicographical_compare + Check if a string is lexicographicaly less then another one + + lexicographical_compare() + + ilexicographical_compare() + + + all Check if all elements of a string satisfy the given predicate @@ -430,6 +440,34 @@ + + Join + + + + Algorithm name + Description + Functions + + + + + join + Join all elements in a container into a single string + + join + + + + join_if + Join all elements in a container that satisfies the condition into a single string + + join_if() + + + + +
Finders and Formatters