~ubuntu-branches/ubuntu/trusty/libthrust/trusty

« back to all changes in this revision

Viewing changes to detail/equal.inl

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Beckmann
  • Date: 2011-05-28 09:32:48 UTC
  • Revision ID: james.westby@ubuntu.com-20110528093248-np3euv5sj7fw3nyv
Tags: upstream-1.4.0
ImportĀ upstreamĀ versionĀ 1.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Copyright 2008-2011 NVIDIA Corporation
 
3
 *
 
4
 *  Licensed under the Apache License, Version 2.0 (the "License");
 
5
 *  you may not use this file except in compliance with the License.
 
6
 *  You may obtain a copy of the License at
 
7
 *
 
8
 *      http://www.apache.org/licenses/LICENSE-2.0
 
9
 *
 
10
 *  Unless required by applicable law or agreed to in writing, software
 
11
 *  distributed under the License is distributed on an "AS IS" BASIS,
 
12
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
13
 *  See the License for the specific language governing permissions and
 
14
 *  limitations under the License.
 
15
 */
 
16
 
 
17
 
 
18
/*! \file equal.inl
 
19
 *  \brief Inline file for equal.h.
 
20
 */
 
21
 
 
22
#include <thrust/equal.h>
 
23
#include <thrust/iterator/iterator_traits.h>
 
24
#include <thrust/mismatch.h>
 
25
#include <thrust/detail/internal_functional.h>
 
26
 
 
27
namespace thrust
 
28
{
 
29
 
 
30
template <typename InputIterator1, typename InputIterator2>
 
31
bool equal(InputIterator1 first1, InputIterator1 last1,
 
32
           InputIterator2 first2)
 
33
{
 
34
    typedef typename thrust::iterator_traits<InputIterator1>::value_type InputType1;
 
35
 
 
36
    return thrust::equal(first1, last1, first2, thrust::detail::equal_to<InputType1>());
 
37
}
 
38
 
 
39
template <typename InputIterator1, typename InputIterator2, 
 
40
          typename BinaryPredicate>
 
41
bool equal(InputIterator1 first1, InputIterator1 last1,
 
42
           InputIterator2 first2, BinaryPredicate binary_pred)
 
43
{
 
44
    return thrust::mismatch(first1, last1, first2, binary_pred).first == last1;
 
45
}
 
46
 
 
47
} // end namespace thrust
 
48