[rtsan] Remove mkfifoat interceptor (#116997)
[llvm-project.git] / libcxx / include / __cxx03 / __algorithm / ranges_rotate.h
blob2efa88748ff702ef3bcebcea8504074d2b88f4d5
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef _LIBCPP___ALGORITHM_RANGES_ROTATE_H
10 #define _LIBCPP___ALGORITHM_RANGES_ROTATE_H
12 #include <__cxx03/__algorithm/iterator_operations.h>
13 #include <__cxx03/__algorithm/ranges_iterator_concept.h>
14 #include <__cxx03/__algorithm/rotate.h>
15 #include <__cxx03/__config>
16 #include <__cxx03/__iterator/concepts.h>
17 #include <__cxx03/__iterator/iterator_traits.h>
18 #include <__cxx03/__iterator/permutable.h>
19 #include <__cxx03/__ranges/access.h>
20 #include <__cxx03/__ranges/concepts.h>
21 #include <__cxx03/__ranges/subrange.h>
22 #include <__cxx03/__utility/move.h>
24 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
25 # pragma GCC system_header
26 #endif
28 _LIBCPP_PUSH_MACROS
29 #include <__cxx03/__undef_macros>
31 #if _LIBCPP_STD_VER >= 20
33 _LIBCPP_BEGIN_NAMESPACE_STD
35 namespace ranges {
36 namespace __rotate {
38 struct __fn {
39 template <class _Iter, class _Sent>
40 _LIBCPP_HIDE_FROM_ABI constexpr static subrange<_Iter> __rotate_fn_impl(_Iter __first, _Iter __middle, _Sent __last) {
41 auto __ret = std::__rotate<_RangeAlgPolicy>(std::move(__first), std::move(__middle), std::move(__last));
42 return {std::move(__ret.first), std::move(__ret.second)};
45 template <permutable _Iter, sentinel_for<_Iter> _Sent>
46 _LIBCPP_HIDE_FROM_ABI constexpr subrange<_Iter> operator()(_Iter __first, _Iter __middle, _Sent __last) const {
47 return __rotate_fn_impl(std::move(__first), std::move(__middle), std::move(__last));
50 template <forward_range _Range>
51 requires permutable<iterator_t<_Range>>
52 _LIBCPP_HIDE_FROM_ABI constexpr borrowed_subrange_t<_Range>
53 operator()(_Range&& __range, iterator_t<_Range> __middle) const {
54 return __rotate_fn_impl(ranges::begin(__range), std::move(__middle), ranges::end(__range));
58 } // namespace __rotate
60 inline namespace __cpo {
61 inline constexpr auto rotate = __rotate::__fn{};
62 } // namespace __cpo
63 } // namespace ranges
65 _LIBCPP_END_NAMESPACE_STD
67 #endif // _LIBCPP_STD_VER >= 20
69 _LIBCPP_POP_MACROS
71 #endif // _LIBCPP___ALGORITHM_RANGES_ROTATE_H