MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / all_of

Function all_of

extern/boost/boost/algorithm/cxx11/all_of.hpp:31–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29/// \note This function is part of the C++2011 standard library.
30template<typename InputIterator, typename Predicate>
31BOOST_CXX14_CONSTEXPR bool all_of ( InputIterator first, InputIterator last, Predicate p )
32{
33 for ( ; first != last; ++first )
34 if ( !p(*first))
35 return false;
36 return true;
37}
38
39/// \fn all_of ( const Range &r, Predicate p )
40/// \return true if all elements in the range satisfy the predicate 'p'

Callers 2

parameter_cla_idMethod · 0.85
parserMethod · 0.85

Calls 2

beginClass · 0.50
endClass · 0.50

Tested by 2

parameter_cla_idMethod · 0.68
parserMethod · 0.68