MCPcopy Create free account
hub / github.com/boostorg/compute / none_of

Function none_of

include/boost/compute/algorithm/none_of.hpp:30–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28/// \see all_of(), any_of()
29template<class InputIterator, class UnaryPredicate>
30inline bool none_of(InputIterator first,
31 InputIterator last,
32 UnaryPredicate predicate,
33 command_queue &queue = system::default_queue())
34{
35 BOOST_STATIC_ASSERT(is_device_iterator<InputIterator>::value);
36 return ::boost::compute::find_if(first, last, predicate, queue) == last;
37}
38
39} // end compute namespace
40} // end boost namespace

Callers 2

BOOST_AUTO_TEST_CASEFunction · 0.85
BOOST_AUTO_TEST_CASEFunction · 0.85

Calls 1

find_ifFunction · 0.85

Tested by 2

BOOST_AUTO_TEST_CASEFunction · 0.68
BOOST_AUTO_TEST_CASEFunction · 0.68