Home
last modified time | relevance | path

Searched refs:one_of (Results 1 – 25 of 1725) sorted by relevance

12345678910>>...69

/dports/devel/boost-docs/boost_1_72_0/libs/algorithm/test/
H A Done_of_test.cpp43 BOOST_CHECK (!ba::one_of ( vi, is_<int> ( 1 ))); in test_one()
45 BOOST_CHECK (!ba::one_of ( vi.begin(), vi.end(), is_<int> ( 1 ))); in test_one()
48 BOOST_CHECK (!ba::one_of ( vi, is_<int> ( 0 ))); in test_one()
50 BOOST_CHECK (!ba::one_of ( vi.begin(), vi.end(), is_<int> ( 0 ))); in test_one()
70 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( '!' ))); in test_one()
73 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( 'n' ))); in test_one()
89 BOOST_CHECK (!ba::one_of ( li.begin(), l_iter, is_<int> ( 1 ))); in test_one()
91 BOOST_CHECK ( ba::one_of ( li.begin(), l_iter, is_<int> ( 2 ))); in test_one()
93 BOOST_CHECK (!ba::one_of ( li.begin(), l_iter, is_<int> ( 3 ))); in test_one()
96 !ba::one_of ( some_numbers, is_<int> ( 6 )) && in test_one()
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/algorithm/test/
H A Done_of_test.cpp43 BOOST_CHECK (!ba::one_of ( vi, is_<int> ( 1 ))); in test_one()
45 BOOST_CHECK (!ba::one_of ( vi.begin(), vi.end(), is_<int> ( 1 ))); in test_one()
48 BOOST_CHECK (!ba::one_of ( vi, is_<int> ( 0 ))); in test_one()
50 BOOST_CHECK (!ba::one_of ( vi.begin(), vi.end(), is_<int> ( 0 ))); in test_one()
70 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( '!' ))); in test_one()
73 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( 'n' ))); in test_one()
89 BOOST_CHECK (!ba::one_of ( li.begin(), l_iter, is_<int> ( 1 ))); in test_one()
91 BOOST_CHECK ( ba::one_of ( li.begin(), l_iter, is_<int> ( 2 ))); in test_one()
93 BOOST_CHECK (!ba::one_of ( li.begin(), l_iter, is_<int> ( 3 ))); in test_one()
96 !ba::one_of ( some_numbers, is_<int> ( 6 )) && in test_one()
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/libs/algorithm/test/
H A Done_of_test.cpp43 BOOST_CHECK (!ba::one_of ( vi, is_<int> ( 1 ))); in test_one()
45 BOOST_CHECK (!ba::one_of ( vi.begin(), vi.end(), is_<int> ( 1 ))); in test_one()
48 BOOST_CHECK (!ba::one_of ( vi, is_<int> ( 0 ))); in test_one()
50 BOOST_CHECK (!ba::one_of ( vi.begin(), vi.end(), is_<int> ( 0 ))); in test_one()
70 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( '!' ))); in test_one()
73 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( 'n' ))); in test_one()
89 BOOST_CHECK (!ba::one_of ( li.begin(), l_iter, is_<int> ( 1 ))); in test_one()
91 BOOST_CHECK ( ba::one_of ( li.begin(), l_iter, is_<int> ( 2 ))); in test_one()
93 BOOST_CHECK (!ba::one_of ( li.begin(), l_iter, is_<int> ( 3 ))); in test_one()
96 !ba::one_of ( some_numbers, is_<int> ( 6 )) && in test_one()
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/algorithm/test/
H A Done_of_test.cpp43 BOOST_CHECK (!ba::one_of ( vi, is_<int> ( 1 ))); in test_one()
45 BOOST_CHECK (!ba::one_of ( vi.begin(), vi.end(), is_<int> ( 1 ))); in test_one()
48 BOOST_CHECK (!ba::one_of ( vi, is_<int> ( 0 ))); in test_one()
50 BOOST_CHECK (!ba::one_of ( vi.begin(), vi.end(), is_<int> ( 0 ))); in test_one()
70 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( '!' ))); in test_one()
73 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( 'n' ))); in test_one()
89 BOOST_CHECK (!ba::one_of ( li.begin(), l_iter, is_<int> ( 1 ))); in test_one()
91 BOOST_CHECK ( ba::one_of ( li.begin(), l_iter, is_<int> ( 2 ))); in test_one()
93 BOOST_CHECK (!ba::one_of ( li.begin(), l_iter, is_<int> ( 3 ))); in test_one()
96 !ba::one_of ( some_numbers, is_<int> ( 6 )) && in test_one()
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/metaparse/test/
H A Done_of.cpp24 BOOST_METAPARSE_TEST_CASE(one_of) in BOOST_METAPARSE_TEST_CASE() argument
27 using boost::metaparse::one_of; in BOOST_METAPARSE_TEST_CASE()
45 get_result<apply_wrap2<one_of<one_char>, str_hello, start> >::type, in BOOST_METAPARSE_TEST_CASE()
52 is_error<apply_wrap2<one_of<test_fail>, str_hello, start> > in BOOST_METAPARSE_TEST_CASE()
59 apply_wrap2<one_of<one_char, one_char>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
69 apply_wrap2<one_of<one_char, test_fail>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
79 apply_wrap2<one_of<test_fail, one_char>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
112 apply_wrap2<one_of<one_char, one_char>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
122 apply_wrap2<one_of<one_char, test_fail>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
132 apply_wrap2<one_of<test_fail, one_char>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/libs/metaparse/test/
H A Done_of.cpp24 BOOST_METAPARSE_TEST_CASE(one_of) in BOOST_METAPARSE_TEST_CASE() argument
27 using boost::metaparse::one_of; in BOOST_METAPARSE_TEST_CASE()
45 get_result<apply_wrap2<one_of<one_char>, str_hello, start> >::type, in BOOST_METAPARSE_TEST_CASE()
52 is_error<apply_wrap2<one_of<test_fail>, str_hello, start> > in BOOST_METAPARSE_TEST_CASE()
59 apply_wrap2<one_of<one_char, one_char>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
69 apply_wrap2<one_of<one_char, test_fail>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
79 apply_wrap2<one_of<test_fail, one_char>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
112 apply_wrap2<one_of<one_char, one_char>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
122 apply_wrap2<one_of<one_char, test_fail>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
132 apply_wrap2<one_of<test_fail, one_char>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/metaparse/test/
H A Done_of.cpp24 BOOST_METAPARSE_TEST_CASE(one_of) in BOOST_METAPARSE_TEST_CASE() argument
27 using boost::metaparse::one_of; in BOOST_METAPARSE_TEST_CASE()
45 get_result<apply_wrap2<one_of<one_char>, str_hello, start> >::type, in BOOST_METAPARSE_TEST_CASE()
52 is_error<apply_wrap2<one_of<test_fail>, str_hello, start> > in BOOST_METAPARSE_TEST_CASE()
59 apply_wrap2<one_of<one_char, one_char>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
69 apply_wrap2<one_of<one_char, test_fail>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
79 apply_wrap2<one_of<test_fail, one_char>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
112 apply_wrap2<one_of<one_char, one_char>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
122 apply_wrap2<one_of<one_char, test_fail>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
132 apply_wrap2<one_of<test_fail, one_char>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/metaparse/test/
H A Done_of.cpp24 BOOST_METAPARSE_TEST_CASE(one_of) in BOOST_METAPARSE_TEST_CASE() argument
27 using boost::metaparse::one_of; in BOOST_METAPARSE_TEST_CASE()
45 get_result<apply_wrap2<one_of<one_char>, str_hello, start> >::type, in BOOST_METAPARSE_TEST_CASE()
52 is_error<apply_wrap2<one_of<test_fail>, str_hello, start> > in BOOST_METAPARSE_TEST_CASE()
59 apply_wrap2<one_of<one_char, one_char>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
69 apply_wrap2<one_of<one_char, test_fail>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
79 apply_wrap2<one_of<test_fail, one_char>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
112 apply_wrap2<one_of<one_char, one_char>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
122 apply_wrap2<one_of<one_char, test_fail>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
132 apply_wrap2<one_of<test_fail, one_char>, str_hello, start> in BOOST_METAPARSE_TEST_CASE()
[all …]
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/algorithm/test/
H A Done_of_test.cpp44 BOOST_CHECK (!ba::one_of ( vi, is_<int> ( 1 ))); in test_one()
46 BOOST_CHECK (!ba::one_of ( vi.begin(), vi.end(), is_<int> ( 1 ))); in test_one()
49 BOOST_CHECK (!ba::one_of ( vi, is_<int> ( 0 ))); in test_one()
51 BOOST_CHECK (!ba::one_of ( vi.begin(), vi.end(), is_<int> ( 0 ))); in test_one()
54 BOOST_CHECK ( ba::one_of ( vi, is_<int> ( 2 ))); in test_one()
56 BOOST_CHECK ( ba::one_of ( vi.begin(), vi.end(), is_<int> ( 2 ))); in test_one()
71 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( '!' ))); in test_one()
74 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( 'n' ))); in test_one()
90 BOOST_CHECK (!ba::one_of ( li.begin(), l_iter, is_<int> ( 1 ))); in test_one()
92 BOOST_CHECK ( ba::one_of ( li.begin(), l_iter, is_<int> ( 2 ))); in test_one()
[all …]
/dports/databases/percona57-server/boost_1_59_0/libs/algorithm/test/
H A Done_of_test.cpp44 BOOST_CHECK (!ba::one_of ( vi, is_<int> ( 1 ))); in test_one()
46 BOOST_CHECK (!ba::one_of ( vi.begin(), vi.end(), is_<int> ( 1 ))); in test_one()
49 BOOST_CHECK (!ba::one_of ( vi, is_<int> ( 0 ))); in test_one()
51 BOOST_CHECK (!ba::one_of ( vi.begin(), vi.end(), is_<int> ( 0 ))); in test_one()
54 BOOST_CHECK ( ba::one_of ( vi, is_<int> ( 2 ))); in test_one()
56 BOOST_CHECK ( ba::one_of ( vi.begin(), vi.end(), is_<int> ( 2 ))); in test_one()
71 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( '!' ))); in test_one()
74 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( 'n' ))); in test_one()
90 BOOST_CHECK (!ba::one_of ( li.begin(), l_iter, is_<int> ( 1 ))); in test_one()
92 BOOST_CHECK ( ba::one_of ( li.begin(), l_iter, is_<int> ( 2 ))); in test_one()
[all …]
/dports/databases/xtrabackup/boost_1_59_0/libs/algorithm/test/
H A Done_of_test.cpp44 BOOST_CHECK (!ba::one_of ( vi, is_<int> ( 1 ))); in test_one()
46 BOOST_CHECK (!ba::one_of ( vi.begin(), vi.end(), is_<int> ( 1 ))); in test_one()
49 BOOST_CHECK (!ba::one_of ( vi, is_<int> ( 0 ))); in test_one()
51 BOOST_CHECK (!ba::one_of ( vi.begin(), vi.end(), is_<int> ( 0 ))); in test_one()
54 BOOST_CHECK ( ba::one_of ( vi, is_<int> ( 2 ))); in test_one()
56 BOOST_CHECK ( ba::one_of ( vi.begin(), vi.end(), is_<int> ( 2 ))); in test_one()
71 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( '!' ))); in test_one()
74 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( 'n' ))); in test_one()
90 BOOST_CHECK (!ba::one_of ( li.begin(), l_iter, is_<int> ( 1 ))); in test_one()
92 BOOST_CHECK ( ba::one_of ( li.begin(), l_iter, is_<int> ( 2 ))); in test_one()
[all …]
/dports/databases/percona57-client/boost_1_59_0/libs/algorithm/test/
H A Done_of_test.cpp44 BOOST_CHECK (!ba::one_of ( vi, is_<int> ( 1 ))); in test_one()
46 BOOST_CHECK (!ba::one_of ( vi.begin(), vi.end(), is_<int> ( 1 ))); in test_one()
49 BOOST_CHECK (!ba::one_of ( vi, is_<int> ( 0 ))); in test_one()
51 BOOST_CHECK (!ba::one_of ( vi.begin(), vi.end(), is_<int> ( 0 ))); in test_one()
54 BOOST_CHECK ( ba::one_of ( vi, is_<int> ( 2 ))); in test_one()
56 BOOST_CHECK ( ba::one_of ( vi.begin(), vi.end(), is_<int> ( 2 ))); in test_one()
71 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( '!' ))); in test_one()
74 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( 'n' ))); in test_one()
90 BOOST_CHECK (!ba::one_of ( li.begin(), l_iter, is_<int> ( 1 ))); in test_one()
92 BOOST_CHECK ( ba::one_of ( li.begin(), l_iter, is_<int> ( 2 ))); in test_one()
[all …]
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/algorithm/test/
H A Done_of_test.cpp44 BOOST_CHECK (!ba::one_of ( vi, is_<int> ( 1 ))); in test_one()
46 BOOST_CHECK (!ba::one_of ( vi.begin(), vi.end(), is_<int> ( 1 ))); in test_one()
49 BOOST_CHECK (!ba::one_of ( vi, is_<int> ( 0 ))); in test_one()
51 BOOST_CHECK (!ba::one_of ( vi.begin(), vi.end(), is_<int> ( 0 ))); in test_one()
54 BOOST_CHECK ( ba::one_of ( vi, is_<int> ( 2 ))); in test_one()
56 BOOST_CHECK ( ba::one_of ( vi.begin(), vi.end(), is_<int> ( 2 ))); in test_one()
71 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( '!' ))); in test_one()
74 BOOST_CHECK (!ba::one_of ( vc, is_<char> ( 'n' ))); in test_one()
90 BOOST_CHECK (!ba::one_of ( li.begin(), l_iter, is_<int> ( 1 ))); in test_one()
92 BOOST_CHECK ( ba::one_of ( li.begin(), l_iter, is_<int> ( 2 ))); in test_one()
[all …]
/dports/devel/grpc/grpc-1.42.0/tools/buildgen/plugins/
H A Dcheck_attrs.py21 def one_of(values): function
43 'boringssl': one_of((True,)),
48 'deps_linkage': one_of(('static',)),
50 'dll': one_of((True, 'only')),
58 'secure': one_of(('check', True, False)),
61 'zlib': one_of((True,)),
66 'boringssl': one_of((True,)),
78 'flaky': one_of((True, False)),
79 'gtest': one_of((True, False)),
84 'run': one_of((True, False)),
[all …]
/dports/devel/grpc130/grpc-1.30.2/tools/buildgen/plugins/
H A Dcheck_attrs.py21 def one_of(values): function
42 'boringssl': one_of((True,)),
47 'deps_linkage': one_of(('static',)),
49 'dll': one_of((True, 'only')),
57 'secure': one_of(('check', True, False)),
60 'zlib': one_of((True,)),
65 'boringssl': one_of((True,)),
77 'flaky': one_of((True, False)),
78 'gtest': one_of((True, False)),
83 'run': one_of((True, False)),
[all …]
/dports/devel/grpc134/grpc-1.34.1/tools/buildgen/plugins/
H A Dcheck_attrs.py21 def one_of(values): function
43 'boringssl': one_of((True,)),
48 'deps_linkage': one_of(('static',)),
50 'dll': one_of((True, 'only')),
58 'secure': one_of(('check', True, False)),
61 'zlib': one_of((True,)),
66 'boringssl': one_of((True,)),
78 'flaky': one_of((True, False)),
79 'gtest': one_of((True, False)),
84 'run': one_of((True, False)),
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/algorithm/doc/
H A Done_of.qbk1 [/ File one_of.qbk]
3 [section:one_of one_of]
12 The header file 'boost/algorithm/cxx11/one_of.hpp' contains four variants of a single algorithm, `o…
28 bool one_of ( InputIterator first, InputIterator last, Predicate p );
30 bool one_of ( const Range &r, Predicate p );
53 one_of ( c, isOdd ) --> false
54 one_of ( c.begin (), c.end (), lessThan10 ) --> false
55 one_of ( c.begin () + 3, c.end (), lessThan10 ) --> true
56 one_of ( c.end (), c.end (), isOdd ) --> false // empty range
64 `one_of` and `one_of_equal` work on all iterators except output iterators.
[all …]
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/algorithm/doc/
H A Done_of.qbk1 [/ File one_of.qbk]
3 [section:one_of one_of]
12 The header file 'boost/algorithm/cxx11/one_of.hpp' contains four variants of a single algorithm, `o…
28 bool one_of ( InputIterator first, InputIterator last, Predicate p );
30 bool one_of ( const Range &r, Predicate p );
53 one_of ( c, isOdd ) --> false
54 one_of ( c.begin (), c.end (), lessThan10 ) --> false
55 one_of ( c.begin () + 3, c.end (), lessThan10 ) --> true
56 one_of ( c.end (), c.end (), isOdd ) --> false // empty range
64 `one_of` and `one_of_equal` work on all iterators except output iterators.
[all …]
/dports/databases/percona57-server/boost_1_59_0/libs/algorithm/doc/
H A Done_of.qbk1 [/ File one_of.qbk]
3 [section:one_of one_of]
12 The header file 'boost/algorithm/cxx11/one_of.hpp' contains four variants of a single algorithm, `o…
28 bool one_of ( InputIterator first, InputIterator last, Predicate p );
30 bool one_of ( const Range &r, Predicate p );
53 one_of ( c, isOdd ) --> false
54 one_of ( c.begin (), c.end (), lessThan10 ) --> false
55 one_of ( c.begin () + 3, c.end (), lessThan10 ) --> true
56 one_of ( c.end (), c.end (), isOdd ) --> false // empty range
64 `one_of` and `one_of_equal` work on all iterators except output iterators.
[all …]
/dports/databases/xtrabackup/boost_1_59_0/libs/algorithm/doc/
H A Done_of.qbk1 [/ File one_of.qbk]
3 [section:one_of one_of]
12 The header file 'boost/algorithm/cxx11/one_of.hpp' contains four variants of a single algorithm, `o…
28 bool one_of ( InputIterator first, InputIterator last, Predicate p );
30 bool one_of ( const Range &r, Predicate p );
53 one_of ( c, isOdd ) --> false
54 one_of ( c.begin (), c.end (), lessThan10 ) --> false
55 one_of ( c.begin () + 3, c.end (), lessThan10 ) --> true
56 one_of ( c.end (), c.end (), isOdd ) --> false // empty range
64 `one_of` and `one_of_equal` work on all iterators except output iterators.
[all …]
/dports/databases/percona57-client/boost_1_59_0/libs/algorithm/doc/
H A Done_of.qbk1 [/ File one_of.qbk]
3 [section:one_of one_of]
12 The header file 'boost/algorithm/cxx11/one_of.hpp' contains four variants of a single algorithm, `o…
28 bool one_of ( InputIterator first, InputIterator last, Predicate p );
30 bool one_of ( const Range &r, Predicate p );
53 one_of ( c, isOdd ) --> false
54 one_of ( c.begin (), c.end (), lessThan10 ) --> false
55 one_of ( c.begin () + 3, c.end (), lessThan10 ) --> true
56 one_of ( c.end (), c.end (), isOdd ) --> false // empty range
64 `one_of` and `one_of_equal` work on all iterators except output iterators.
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/algorithm/doc/
H A Done_of.qbk1 [/ File one_of.qbk]
3 [section:one_of one_of]
12 The header file 'boost/algorithm/cxx11/one_of.hpp' contains four variants of a single algorithm, `o…
28 bool one_of ( InputIterator first, InputIterator last, Predicate p );
30 bool one_of ( const Range &r, Predicate p );
53 one_of ( c, isOdd ) --> false
54 one_of ( c.begin (), c.end (), lessThan10 ) --> false
55 one_of ( c.begin () + 3, c.end (), lessThan10 ) --> true
56 one_of ( c.end (), c.end (), isOdd ) --> false // empty range
64 `one_of` and `one_of_equal` work on all iterators except output iterators.
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/libs/algorithm/doc/
H A Done_of.qbk1 [/ File one_of.qbk]
3 [section:one_of one_of]
12 The header file 'boost/algorithm/cxx11/one_of.hpp' contains four variants of a single algorithm, `o…
28 bool one_of ( InputIterator first, InputIterator last, Predicate p );
30 bool one_of ( const Range &r, Predicate p );
53 one_of ( c, isOdd ) --> false
54 one_of ( c.begin (), c.end (), lessThan10 ) --> false
55 one_of ( c.begin () + 3, c.end (), lessThan10 ) --> true
56 one_of ( c.end (), c.end (), isOdd ) --> false // empty range
64 `one_of` and `one_of_equal` work on all iterators except output iterators.
[all …]
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/algorithm/doc/
H A Done_of.qbk1 [/ File one_of.qbk]
3 [section:one_of one_of]
12 The header file 'boost/algorithm/cxx11/one_of.hpp' contains four variants of a single algorithm, `o…
28 bool one_of ( InputIterator first, InputIterator last, Predicate p );
30 bool one_of ( const Range &r, Predicate p );
53 one_of ( c, isOdd ) --> false
54 one_of ( c.begin (), c.end (), lessThan10 ) --> false
55 one_of ( c.begin () + 3, c.end (), lessThan10 ) --> true
56 one_of ( c.end (), c.end (), isOdd ) --> false // empty range
64 `one_of` and `one_of_equal` work on all iterators except output iterators.
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/algorithm/doc/
H A Done_of.qbk1 [/ File one_of.qbk]
3 [section:one_of one_of]
12 The header file 'boost/algorithm/cxx11/one_of.hpp' contains four variants of a single algorithm, `o…
28 bool one_of ( InputIterator first, InputIterator last, Predicate p );
30 bool one_of ( const Range &r, Predicate p );
53 one_of ( c, isOdd ) --> false
54 one_of ( c.begin (), c.end (), lessThan10 ) --> false
55 one_of ( c.begin () + 3, c.end (), lessThan10 ) --> true
56 one_of ( c.end (), c.end (), isOdd ) --> false // empty range
64 `one_of` and `one_of_equal` work on all iterators except output iterators.
[all …]

12345678910>>...69