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

Mark de Wever via libcxx-commits libcxx-commits at lists.llvm.org
Tue Apr 5 09:18:22 PDT 2022


Author: Hui Xie
Date: 2022-04-05T18:18:16+02:00
New Revision: c00df57b86441a94578fe1deca70e538b6b74483

URL: https://github.com/llvm/llvm-project/commit/c00df57b86441a94578fe1deca70e538b6b74483
DIFF: https://github.com/llvm/llvm-project/commit/c00df57b86441a94578fe1deca70e538b6b74483.diff

LOG: [libc++] add global variable template std::views::empty

[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.

Reviewed By: #libc, Mordante

Differential Revision: https://reviews.llvm.org/D122996

Added: 
    libcxx/test/std/ranges/range.adaptors/range.empty/views.empty.pass.cpp

Modified: 
    libcxx/include/__ranges/empty_view.h
    libcxx/include/ranges

Removed: 
    


################################################################################
diff  --git a/libcxx/include/__ranges/empty_view.h b/libcxx/include/__ranges/empty_view.h
index c6a92e05aeb38..3299fe825ddf2 100644
--- a/libcxx/include/__ranges/empty_view.h
+++ b/libcxx/include/__ranges/empty_view.h
@@ -36,6 +36,13 @@ namespace ranges {
 
   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)

diff  --git a/libcxx/include/ranges b/libcxx/include/ranges
index 5be1614d3b11d..67a688bbbaacf 100644
--- a/libcxx/include/ranges
+++ b/libcxx/include/ranges
@@ -120,6 +120,14 @@ namespace std::ranges {
     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;

diff  --git a/libcxx/test/std/ranges/range.adaptors/range.empty/views.empty.pass.cpp b/libcxx/test/std/ranges/range.adaptors/range.empty/views.empty.pass.cpp
new file mode 100644
index 0000000000000..7fc90a174e64c
--- /dev/null
+++ b/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;
+}


        


More information about the libcxx-commits mailing list