From b5c87084afaef42b2d058f68091be31988a6a874 Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Wed, 13 Sep 2017 11:08:07 +0900 Subject: Imported Upstream version 1.64.0 Change-Id: Id9212edd016dd55f21172c427aa7894d1d24148b Signed-off-by: DongHun Kwak --- doc/html/boost/algorithm/all_of_idp422726016.html | 111 ++++++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 doc/html/boost/algorithm/all_of_idp422726016.html (limited to 'doc/html/boost/algorithm/all_of_idp422726016.html') diff --git a/doc/html/boost/algorithm/all_of_idp422726016.html b/doc/html/boost/algorithm/all_of_idp422726016.html new file mode 100644 index 0000000000..4ac98a031c --- /dev/null +++ b/doc/html/boost/algorithm/all_of_idp422726016.html @@ -0,0 +1,111 @@ + + + + +Function template all_of + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+
+
+

Function template all_of

+

boost::algorithm::all_of

+
+

Synopsis

+
// In header: <boost/algorithm/cxx11/all_of.hpp>
+
+
+template<typename InputIterator, typename Predicate> 
+  bool all_of(InputIterator first, InputIterator last, Predicate p);
+
+

Description

+

+

+
+ + + + + +
[Note]Note

returns true on an empty range

+

+ +

+
+ + + + + +
[Note]Note

This function is part of the C++2011 standard library.

+

+

+
++++ + + + + + + + + + + +

Parameters:

++++ + + + + + + + + + + + + + + +

first

The start of the input sequence

last

One past the end of the input sequence

p

A predicate for testing the elements of the sequence

Returns:

true if all elements in [first, last) satisfy the predicate 'p'

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