2 //===----------------------------------------------------------------------===//
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
10 #ifndef _LIBCPP___FUNCTIONAL_DEFAULT_SEARCHER_H
11 #define _LIBCPP___FUNCTIONAL_DEFAULT_SEARCHER_H
13 #include <__algorithm/search.h>
15 #include <__functional/identity.h>
16 #include <__functional/operations.h>
17 #include <__iterator/iterator_traits.h>
18 #include <__utility/pair.h>
20 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
21 # pragma GCC system_header
24 _LIBCPP_BEGIN_NAMESPACE_STD
26 #if _LIBCPP_STD_VER >= 17
29 template<class _ForwardIterator
, class _BinaryPredicate
= equal_to
<>>
30 class _LIBCPP_TEMPLATE_VIS default_searcher
{
32 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX20
33 default_searcher(_ForwardIterator __f
, _ForwardIterator __l
,
34 _BinaryPredicate __p
= _BinaryPredicate())
35 : __first_(__f
), __last_(__l
), __pred_(__p
) {}
37 template <typename _ForwardIterator2
>
38 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX20
39 pair
<_ForwardIterator2
, _ForwardIterator2
>
40 operator () (_ForwardIterator2 __f
, _ForwardIterator2 __l
) const
42 auto __proj
= __identity();
43 return std::__search_impl(__f
, __l
, __first_
, __last_
, __pred_
, __proj
, __proj
);
47 _ForwardIterator __first_
;
48 _ForwardIterator __last_
;
49 _BinaryPredicate __pred_
;
51 _LIBCPP_CTAD_SUPPORTED_FOR_TYPE(default_searcher
);
53 #endif // _LIBCPP_STD_VER >= 17
55 _LIBCPP_END_NAMESPACE_STD
57 #endif // _LIBCPP___FUNCTIONAL_DEFAULT_SEARCHER_H