1#ifndef C4_STD_SPAN_HPP_
2#define C4_STD_SPAN_HPP_
6#ifndef C4CORE_SINGLE_HEADER
7#include "c4/language.hpp"
11#if (C4_CPP >= 20) || defined(__DOXYGEN__)
13#ifndef C4CORE_SINGLE_HEADER
26template<>
struct is_string<std::span<const char>> :
public std::true_type {};
27template<>
struct is_string<const std::span<const char>> :
public std::true_type {};
30template<>
struct is_string<std::span<char>> :
public std::true_type {};
31template<>
struct is_string<const std::span<char>> :
public std::true_type {};
94 size_t len = buf.
len < sz ? buf.
len : sz;
102 size_t sz = s.size();
103 size_t len = buf.
len < sz ? buf.
len : sz;
111 if(buf.
len <= s->size())
114 *s = s->first(buf.
len);
bool from_chars(csubstr buf, uint8_t *v) noexcept
substr to_substr(char(&s)[N]) noexcept
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
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...
a traits class to mark a type as a writeable string type, meaning c4::to_substr() can be used directl...