#include "c4/language.hpp"
#include "c4/substr.hpp"
#include <string_view>
Go to the source code of this file.
|
| | c4 |
| | (Undefined by default) Use shorter error message from checks/asserts: do not show the check condition in the error message.
|
| |
|
| c4::csubstr | c4::to_csubstr (std::string_view s) noexcept |
| | create a csubstr from an existing std::string_view. More...
|
| |
| bool | c4::operator== (c4::csubstr ss, std::string_view s) |
| |
| bool | c4::operator!= (c4::csubstr ss, std::string_view s) |
| |
| bool | c4::operator>= (c4::csubstr ss, std::string_view s) |
| |
| bool | c4::operator> (c4::csubstr ss, std::string_view s) |
| |
| bool | c4::operator<= (c4::csubstr ss, std::string_view s) |
| |
| bool | c4::operator< (c4::csubstr ss, std::string_view s) |
| |
| bool | c4::operator== (std::string_view s, c4::csubstr ss) |
| |
| bool | c4::operator!= (std::string_view s, c4::csubstr ss) |
| |
| bool | c4::operator<= (std::string_view s, c4::csubstr ss) |
| |
| bool | c4::operator< (std::string_view s, c4::csubstr ss) |
| |
| bool | c4::operator>= (std::string_view s, c4::csubstr ss) |
| |
| bool | c4::operator> (std::string_view s, c4::csubstr ss) |
| |
| size_t | c4::to_chars (c4::substr buf, std::string_view s) |
| | copy an std::string_view to a writeable substr More...
|
| |