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 //===----------------------------------------------------------------------===//
8 
9 // UNSUPPORTED: c++03, c++11, c++14, c++17
10 // UNSUPPORTED: libcpp-has-no-incomplete-ranges
11 
12 // string_view
13 
14 #include <string_view>
15 
16 #include <concepts>
17 #include <ranges>
18 
19 
20 
21 static_assert(std::same_as<std::ranges::iterator_t<std::string_view>, std::string_view::iterator>);
22 static_assert(std::ranges::common_range<std::string_view>);
23 static_assert(std::ranges::random_access_range<std::string_view>);
24 static_assert(std::ranges::contiguous_range<std::string_view>);
25 static_assert(std::ranges::view<std::string_view> && std::ranges::enable_view<std::string_view>);
26 static_assert(std::ranges::sized_range<std::string_view>);
27 static_assert(std::ranges::borrowed_range<std::string_view>);
28 static_assert(std::ranges::viewable_range<std::string_view>);
29 
30 static_assert(std::same_as<std::ranges::iterator_t<std::string_view const>, std::string_view::const_iterator>);
31 static_assert(std::ranges::common_range<std::string_view const>);
32 static_assert(std::ranges::random_access_range<std::string_view const>);
33 static_assert(std::ranges::contiguous_range<std::string_view const>);
34 static_assert(!std::ranges::view<std::string_view const> && !std::ranges::enable_view<std::string_view const>);
35 static_assert(std::ranges::sized_range<std::string_view const>);
36 static_assert(std::ranges::borrowed_range<std::string_view const>);
37 static_assert(std::ranges::viewable_range<std::string_view const>);
38