#include <string_view>
Go to the source code of this file.
|
constexpr wchar_t | c1 [] = L"one" |
|
constexpr wchar_t | c2 [] = L"two" |
|
constexpr std::wstring_view | s1 {c1} |
|
constexpr std::wstring_view | s2 {c2} |
|
constexpr int | n1 = s1.compare(s1) |
|
constexpr int | n2 = s1.compare(s2) |
|
◆ c1
constexpr wchar_t c1[] = L"one" |
|
constexpr |
Definition at line 23 of file 2.cc.
◆ c2
constexpr wchar_t c2[] = L"two" |
|
constexpr |
Definition at line 24 of file 2.cc.
◆ n1
constexpr int n1 = s1.compare(s1) |
|
constexpr |
Definition at line 29 of file 2.cc.
◆ n2
constexpr int n2 = s1.compare(s2) |
|
constexpr |
Definition at line 30 of file 2.cc.
◆ s1
constexpr std::wstring_view s1 {c1} |
|
constexpr |
Definition at line 26 of file 2.cc.
◆ s2
constexpr std::wstring_view s2 {c2} |
|
constexpr |
Definition at line 27 of file 2.cc.