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

Function equal

include/boost/compute/algorithm/equal.hpp:24–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22/// beginning at \p first2 are equal.
23template<class InputIterator1, class InputIterator2>
24inline bool equal(InputIterator1 first1,
25 InputIterator1 last1,
26 InputIterator2 first2,
27 command_queue &queue = system::default_queue())
28{
29 return ::boost::compute::mismatch(first1,
30 last1,
31 first2,
32 queue).first == last1;
33}
34
35/// \overload
36template<class InputIterator1, class InputIterator2>

Callers 5

BOOST_AUTO_TEST_CASEFunction · 0.85
BOOST_AUTO_TEST_CASEFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
is_permutationFunction · 0.85

Calls 1

mismatchFunction · 0.85

Tested by 2

BOOST_AUTO_TEST_CASEFunction · 0.68
BOOST_AUTO_TEST_CASEFunction · 0.68