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