Mark de Wever | af59b2d | 2020-11-24 18:08:02 +0100 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===--------------------------- ranges -----------------------------------===// |
| 3 | // |
| 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 |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #ifndef _LIBCPP_RANGES |
| 11 | #define _LIBCPP_RANGES |
| 12 | |
| 13 | /* |
| 14 | |
| 15 | #include <compare> // see [compare.syn] |
| 16 | #include <initializer_list> // see [initializer.list.syn] |
| 17 | #include <iterator> // see [iterator.synopsis] |
| 18 | |
| 19 | namespace std::ranges { |
Christopher Di Bella | 66ce129 | 2021-04-11 05:08:32 +0000 | [diff] [blame] | 20 | inline namespace unspecified { |
| 21 | // [range.access], range access |
| 22 | inline constexpr unspecified begin = unspecified; |
| 23 | inline constexpr unspecified end = unspecified; |
| 24 | inline constexpr unspecified cbegin = unspecified; |
| 25 | inline constexpr unspecified cend = unspecified; |
zoecarver | e3a4b18 | 2021-04-22 09:29:02 -0700 | [diff] [blame] | 26 | |
| 27 | inline constexpr unspecified size = unspecified; |
zoecarver | 9ce1b4d | 2021-04-23 11:23:22 -0700 | [diff] [blame^] | 28 | inline constexpr unspecified ssize = unspecified; |
Christopher Di Bella | 66ce129 | 2021-04-11 05:08:32 +0000 | [diff] [blame] | 29 | } |
| 30 | |
Mark de Wever | af59b2d | 2020-11-24 18:08:02 +0100 | [diff] [blame] | 31 | // [range.range], ranges |
| 32 | template<class T> |
Christopher Di Bella | 9db3ef2 | 2021-04-11 17:40:30 +0000 | [diff] [blame] | 33 | concept range = see below; |
| 34 | |
| 35 | template<class T> |
Mark de Wever | af59b2d | 2020-11-24 18:08:02 +0100 | [diff] [blame] | 36 | inline constexpr bool enable_borrowed_range = false; |
Christopher Di Bella | 66ce129 | 2021-04-11 05:08:32 +0000 | [diff] [blame] | 37 | |
| 38 | template<class T> |
| 39 | using iterator_t = decltype(ranges::begin(declval<T&>())); |
Christopher Di Bella | 9db3ef2 | 2021-04-11 17:40:30 +0000 | [diff] [blame] | 40 | template<class T> |
| 41 | using iterator_t = decltype(ranges::begin(declval<T&>())); |
| 42 | template<range R> |
| 43 | using sentinel_t = decltype(ranges::end(declval<R&>())); |
| 44 | template<range R> |
| 45 | using range_difference_t = iter_difference_t<iterator_t<R>>; |
| 46 | template<range R> |
| 47 | using range_value_t = iter_value_t<iterator_t<R>>; |
| 48 | template<range R> |
| 49 | using range_reference_t = iter_reference_t<iterator_t<R>>; |
| 50 | template<range R> |
| 51 | using range_rvalue_reference_t = iter_rvalue_reference_t<iterator_t<R>>; |
| 52 | |
Louis Dionne | fa8282c | 2021-04-28 15:22:11 -0400 | [diff] [blame] | 53 | // [range.view], views |
| 54 | template<class T> |
| 55 | inline constexpr bool enable_view = ...; |
| 56 | |
| 57 | struct view_base { }; |
| 58 | |
| 59 | template<class T> |
| 60 | concept view = ...; |
| 61 | |
Christopher Di Bella | 9db3ef2 | 2021-04-11 17:40:30 +0000 | [diff] [blame] | 62 | // [range.refinements], other range refinements |
Christopher Di Bella | 8250c63 | 2021-04-11 19:04:52 +0000 | [diff] [blame] | 63 | template<class T> |
| 64 | concept input_range = see below; |
| 65 | |
Christopher Di Bella | 8f1370d | 2021-04-11 22:11:03 +0000 | [diff] [blame] | 66 | template<class T> |
| 67 | concept forward_range = see below; |
| 68 | |
Christopher Di Bella | 10a3147 | 2021-04-12 01:16:45 +0000 | [diff] [blame] | 69 | template<class T> |
| 70 | concept bidirectional_range = see below; |
| 71 | |
Christopher Di Bella | 9db3ef2 | 2021-04-11 17:40:30 +0000 | [diff] [blame] | 72 | template <class _Tp> |
| 73 | concept common_range = see below; |
Mark de Wever | af59b2d | 2020-11-24 18:08:02 +0100 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | */ |
| 77 | |
| 78 | #include <__config> |
Christopher Di Bella | 66ce129 | 2021-04-11 05:08:32 +0000 | [diff] [blame] | 79 | #include <__ranges/access.h> |
Christopher Di Bella | 9db3ef2 | 2021-04-11 17:40:30 +0000 | [diff] [blame] | 80 | #include <__ranges/concepts.h> |
Mark de Wever | af59b2d | 2020-11-24 18:08:02 +0100 | [diff] [blame] | 81 | #include <__ranges/enable_borrowed_range.h> |
Louis Dionne | fa8282c | 2021-04-28 15:22:11 -0400 | [diff] [blame] | 82 | #include <__ranges/view.h> |
zoecarver | e3a4b18 | 2021-04-22 09:29:02 -0700 | [diff] [blame] | 83 | #include <__ranges/size.h> |
Mark de Wever | af59b2d | 2020-11-24 18:08:02 +0100 | [diff] [blame] | 84 | #include <compare> // Required by the standard. |
| 85 | #include <initializer_list> // Required by the standard. |
| 86 | #include <iterator> // Required by the standard. |
| 87 | #include <type_traits> |
| 88 | #include <version> |
| 89 | |
| 90 | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
| 91 | #pragma GCC system_header |
| 92 | #endif |
| 93 | |
| 94 | _LIBCPP_PUSH_MACROS |
| 95 | #include <__undef_macros> |
| 96 | |
| 97 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 98 | |
| 99 | #if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_RANGES) |
| 100 | |
| 101 | #endif // _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_RANGES) |
| 102 | |
| 103 | _LIBCPP_END_NAMESPACE_STD |
| 104 | |
| 105 | _LIBCPP_POP_MACROS |
| 106 | |
| 107 | #endif // _LIBCPP_RANGES |