]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/std/experimental/string.view/string.view.iterators/end.pass.cpp
Vendor import of libc++ trunk r290819:
[FreeBSD/FreeBSD.git] / test / std / experimental / string.view / string.view.iterators / end.pass.cpp
1 //===----------------------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 // <string_view>
11
12 // constexpr const_iterator end() const;
13
14 #include <experimental/string_view>
15 #include <cstddef>
16 #include <cassert>
17
18 #include "test_macros.h"
19
20 template <class S>
21 void
22 test(S s)
23 {
24     const S& cs = s;
25     typename S::iterator e = s.end();
26     typename S::const_iterator ce1 = cs.end();
27     typename S::const_iterator ce2 = s.cend();
28
29     if (s.empty())
30     {
31         assert(  e ==  s.begin());
32         assert(ce1 == cs.begin());
33         assert(ce2 ==  s.begin());
34     }
35     else
36     {
37         assert(  e !=  s.begin());
38         assert(ce1 != cs.begin());
39         assert(ce2 !=  s.begin());
40     }
41
42     assert(  e -  s.begin() == static_cast<std::ptrdiff_t>(s.size()));
43     assert(ce1 - cs.begin() == static_cast<std::ptrdiff_t>(cs.size()));
44     assert(ce2 - s.cbegin() == static_cast<std::ptrdiff_t>(s.size()));
45
46     assert(  e == ce1);
47     assert(  e == ce2);
48     assert(ce1 == ce2);
49 }
50
51
52 int main()
53 {
54     typedef std::experimental::string_view    string_view;
55     typedef std::experimental::u16string_view u16string_view;
56     typedef std::experimental::u32string_view u32string_view;
57     typedef std::experimental::wstring_view   wstring_view;
58
59     test(string_view   ());
60     test(u16string_view());
61     test(u32string_view());
62     test(wstring_view  ());
63     test(string_view   ( "123"));
64     test(wstring_view  (L"123"));
65 #if TEST_STD_VER >= 11
66     test(u16string_view{u"123"});
67     test(u32string_view{U"123"});
68 #endif
69
70 #if TEST_STD_VER > 11
71     {
72     constexpr string_view       sv { "123", 3 };
73     constexpr u16string_view u16sv {u"123", 3 };
74     constexpr u32string_view u32sv {U"123", 3 };
75     constexpr wstring_view     wsv {L"123", 3 };
76
77     static_assert (    sv.begin() !=    sv.end(), "" );
78     static_assert ( u16sv.begin() != u16sv.end(), "" );
79     static_assert ( u32sv.begin() != u32sv.end(), "" );
80     static_assert (   wsv.begin() !=   wsv.end(), "" );
81
82     static_assert (    sv.begin() !=    sv.cend(), "" );
83     static_assert ( u16sv.begin() != u16sv.cend(), "" );
84     static_assert ( u32sv.begin() != u32sv.cend(), "" );
85     static_assert (   wsv.begin() !=   wsv.cend(), "" );
86     }
87 #endif
88 }