1#ifndef _C4_STD_STRING_VIEW_HPP_
2#define _C4_STD_STRING_VIEW_HPP_
6#ifndef C4CORE_SINGLE_HEADER
7#ifndef _C4_LANGUAGE_HPP_
8#include "c4/language.hpp"
12#if (C4_CPP >= 17 && defined(__cpp_lib_string_view)) || defined(__DOXYGEN__)
14#ifndef C4CORE_SINGLE_HEADER
15#ifndef _C4_SUBSTR_HPP_
27template<>
struct is_string<std::string_view> :
public std::true_type {};
28template<>
struct is_string<const std::string_view> :
public std::true_type {};
63 size_t len = buf.
len < sz ? buf.
len : sz;
csubstr to_csubstr(const char(&s)[N]) noexcept
bool operator<(const char c, basic_substring< C > const that) noexcept
bool operator!=(const char c, basic_substring< C > const that) noexcept
bool operator==(const char c, basic_substring< C > const that) noexcept
bool operator>(const char c, basic_substring< C > const that) noexcept
bool operator>=(const char c, basic_substring< C > const that) noexcept
bool operator<=(const char c, basic_substring< C > const that) noexcept
basic_substring< char > substr
a mutable string view
basic_substring< const char > csubstr
an immutable string view
size_t to_chars(substr buf, uint8_t v) noexcept
(Undefined by default) Use shorter error message from checks/asserts: do not show the check condition...
int compare(C const c) const noexcept
auto copy_from(ro_substr that) -> typename std::enable_if< !std::is_const< U >::value, void >::type
copy a string to this substr, starting at 0
size_t len
the length of the substring
a traits class to mark a type as a string type, meaning c4::to_csubstr() can be used directly instead...