[libcxx-commits] [PATCH] D122996: [libc++] add global variable template std::views::empty

Hui via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Sun Apr 3 08:49:20 PDT 2022


huixie90 created this revision.
huixie90 added reviewers: Quuxplusone, ldionne, philnik.
Herald added a project: All.
huixie90 requested review of this revision.
Herald added a project: libc++.
Herald added a subscriber: libcxx-commits.
Herald added a reviewer: libc++.

[libc++] add global variable template std::views::empty
Note it is neither a range adaptor, nor a CPO. It is simplify a global variable template.


Repository:
  rG LLVM Github Monorepo

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.420059.patch
Type: text/x-patch
Size: 2548 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220403/53d506fa/attachment.bin>


More information about the libcxx-commits mailing list