You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
610 B
29 lines
610 B
// This file is under GNU General Public License 3.0
|
|
// see LICENSE.txt
|
|
|
|
#ifndef PEP_DATATYPES_STRING_VIEW_HH
|
|
#define PEP_DATATYPES_STRING_VIEW_HH
|
|
|
|
#include <string_view>
|
|
|
|
namespace pEp
|
|
{
|
|
template<class CharT>
|
|
using basic_string_view = std::basic_string_view<CharT>;
|
|
|
|
typedef std::string_view string_view;
|
|
typedef std::u16string_view u16string_view;
|
|
typedef std::u32string_view u32string_view;
|
|
}
|
|
|
|
namespace pEp
|
|
{
|
|
constexpr
|
|
string_view operator""_sv(const char* s, size_t sz) noexcept
|
|
{
|
|
return string_view(s,sz);
|
|
}
|
|
}
|
|
|
|
#endif // PEP_DATATYPES_STRING_VIEW_HH
|