[libcxx-commits] [PATCH] D122996: [libc++] add global variable template std::views::empty
Mark de Wever via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Apr 5 09:18:23 PDT 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGc00df57b8644: [libc++] add global variable template std::views::empty (authored by huixie90, committed by Mordante).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D122996/new/
https://reviews.llvm.org/D122996
Files:
libcxx/include/__ranges/empty_view.h
libcxx/include/ranges
libcxx/test/std/ranges/range.adaptors/range.empty/views.empty.pass.cpp
Index: libcxx/test/std/ranges/range.adaptors/range.empty/views.empty.pass.cpp
===================================================================
--- /dev/null
+++ libcxx/test/std/ranges/range.adaptors/range.empty/views.empty.pass.cpp
@@ -0,0 +1,51 @@
+//===----------------------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+// UNSUPPORTED: c++03, c++11, c++14, c++17
+// UNSUPPORTED: libcpp-has-no-incomplete-ranges
+
+// template <class _Tp>
+// inline constexpr empty_view<_Tp> empty{};
+
+#include <ranges>
+#include <cassert>
+
+#include "test_macros.h"
+
+template <class T>
+constexpr void testType() {
+ ASSERT_SAME_TYPE(decltype(std::views::empty<T>), const std::ranges::empty_view<T>);
+ ASSERT_SAME_TYPE(decltype((std::views::empty<T>)), const std::ranges::empty_view<T>&);
+
+ auto v = std::views::empty<T>;
+ assert(std::ranges::empty(v));
+}
+
+struct Empty {};
+struct BigType {
+ char buff[8];
+};
+
+constexpr bool test() {
+
+ testType<int>();
+ testType<const int>();
+ testType<int*>();
+ testType<Empty>();
+ testType<const Empty>();
+ testType<BigType>();
+
+ return true;
+}
+
+int main(int, char**) {
+ test();
+ static_assert(test());
+
+ return 0;
+}
Index: libcxx/include/ranges
===================================================================
--- libcxx/include/ranges
+++ libcxx/include/ranges
@@ -120,6 +120,14 @@
requires is_object_v<T>
class empty_view;
+ template<class T>
+ inline constexpr bool enable_borrowed_range<empty_view<T>> = true;
+
+ namespace views {
+ template<class T>
+ inline constexpr empty_view<T> empty{};
+ }
+
// [range.all], all view
namespace views {
inline constexpr unspecified all = unspecified;
Index: libcxx/include/__ranges/empty_view.h
===================================================================
--- libcxx/include/__ranges/empty_view.h
+++ libcxx/include/__ranges/empty_view.h
@@ -36,6 +36,13 @@
template<class _Tp>
inline constexpr bool enable_borrowed_range<empty_view<_Tp>> = true;
+
+ namespace views {
+
+ template <class _Tp>
+ inline constexpr empty_view<_Tp> empty{};
+
+ } // namespace views
} // namespace ranges
#endif // _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_INCOMPLETE_RANGES)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D122996.420544.patch
Type: text/x-patch
Size: 2548 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220405/9381d39b/attachment.bin>
More information about the libcxx-commits
mailing list