From 34bd32e225e2a8a94104489b31c42e5801cc1f4a Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Wed, 13 Sep 2017 11:05:34 +0900 Subject: Imported Upstream version 1.63.0 Change-Id: Iac85556a04b7e58d63ba636dedb0986e3555714a Signed-off-by: DongHun Kwak --- .../boost/algorithm/join_if_idm46563496730928.html | 112 --------------------- 1 file changed, 112 deletions(-) delete mode 100644 doc/html/boost/algorithm/join_if_idm46563496730928.html (limited to 'doc/html/boost/algorithm/join_if_idm46563496730928.html') diff --git a/doc/html/boost/algorithm/join_if_idm46563496730928.html b/doc/html/boost/algorithm/join_if_idm46563496730928.html deleted file mode 100644 index 01c217fef7..0000000000 --- a/doc/html/boost/algorithm/join_if_idm46563496730928.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - -Function template join_if - - - - - - - - - - - - - - - -
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
-
-
-PrevUpHomeNext -
-
-
-
-

Function template join_if

-

boost::algorithm::join_if — Conditional join algorithm.

-
-

Synopsis

-
// In header: <boost/algorithm/string/regex.hpp>
-
-
-template<typename SequenceSequenceT, typename Range1T, typename CharT, 
-         typename RegexTraitsT> 
-  range_value< SequenceSequenceT >::type 
-  join_if(const SequenceSequenceT & Input, const Range1T & Separator, 
-          const basic_regex< CharT, RegexTraitsT > & Rx, 
-          match_flag_type Flags = match_default);
-
-

Description

-

This algorithm joins all strings in a 'list' into one long string. Segments are concatenated by given separator. Only segments that match the given regular expression will be added to the result

-

This is a specialization of join_if algorithm.

-

- -

-
- - - - - -
[Note]Note

This function provides the strong exception-safety guarantee

-

-

-
---- - - - - - - - - - - -

Parameters:

---- - - - - - - - - - - - - - - - - - - -

Flags

Regex options

Input

A container that holds the input strings. It must be a container-of-containers.

Rx

A regular expression

Separator

A string that will separate the joined segments.

Returns:

Concatenated string.

-
-
- - - -
-
-
-PrevUpHomeNext -
- - -- cgit v1.2.3