Mantid
Loading...
Searching...
No Matches
equal.hpp
Go to the documentation of this file.
1// clang-format off
2/*
3 Copyright (c) Marshall Clow 2008-2012.
4
5 Distributed under the Boost Software License, Version 1.0. (See accompanying
6 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7*/
8
12
13#pragma once
14
15#include <algorithm> // for std::equal
16#include <iterator>
17
18namespace boost { namespace algorithm {
19
20namespace detail {
21
22 template <class T1, class T2>
23 struct eq {
24 bool operator () ( const T1& v1, const T2& v2 ) const { return v1 == v2 ;}
25 };
26
27 template <class RandomAccessIterator1, class RandomAccessIterator2, class BinaryPredicate>
28 bool equal ( RandomAccessIterator1 first1, RandomAccessIterator1 last1,
29 RandomAccessIterator2 first2, RandomAccessIterator2 last2, BinaryPredicate pred,
30 std::random_access_iterator_tag /*unused*/, std::random_access_iterator_tag /*unused*/)
31 {
32 // Random-access iterators let is check the sizes in constant time
33 if ( std::distance ( first1, last1 ) != std::distance ( first2, last2 ))
34 return false;
35 // If we know that the sequences are the same size, the original version is fine
36 return std::equal ( first1, last1, first2, pred );
37 }
38
39 template <class InputIterator1, class InputIterator2, class BinaryPredicate>
40 bool equal ( InputIterator1 first1, InputIterator1 last1,
41 InputIterator2 first2, InputIterator2 last2, BinaryPredicate pred,
42 std::input_iterator_tag /*unused*/, std::input_iterator_tag /*unused*/)
43 {
44 for (; first1 != last1 && first2 != last2; ++first1, ++first2 )
45 if ( !pred(*first1, *first2 ))
46 return false;
47
48 return first1 == last1 && first2 == last2;
49 }
50}
51
62template <class InputIterator1, class InputIterator2, class BinaryPredicate>
63bool equal ( InputIterator1 first1, InputIterator1 last1,
64 InputIterator2 first2, InputIterator2 last2, BinaryPredicate pred )
65{
67 first1, last1, first2, last2, pred,
68 typename std::iterator_traits<InputIterator1>::iterator_category (),
69 typename std::iterator_traits<InputIterator2>::iterator_category ());
70}
71
80template <class InputIterator1, class InputIterator2>
81bool equal ( InputIterator1 first1, InputIterator1 last1,
82 InputIterator2 first2, InputIterator2 last2 )
83{
85 first1, last1, first2, last2,
87 typename std::iterator_traits<InputIterator1>::value_type,
88 typename std::iterator_traits<InputIterator2>::value_type> (),
89 typename std::iterator_traits<InputIterator1>::iterator_category (),
90 typename std::iterator_traits<InputIterator2>::iterator_category ());
91}
92
93// There are already range-based versions of these.
94
95}} // namespace boost and algorithm
96// clang-format on
bool equal(RandomAccessIterator1 first1, RandomAccessIterator1 last1, RandomAccessIterator2 first2, RandomAccessIterator2 last2, BinaryPredicate pred, std::random_access_iterator_tag, std::random_access_iterator_tag)
Definition: equal.hpp:28
bool equal(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, BinaryPredicate pred)
Definition: equal.hpp:63
Definition: NDArray.h:49
bool operator()(const T1 &v1, const T2 &v2) const
Definition: equal.hpp:24