43 const char* raw()
const {
44 return m_ptr ? m_ptr :
"";
47 size_t length()
const {
48 return view().length();
52 return !m_ptr || m_ptr[0] ==
'\0';
55 std::string str()
const {
56 return m_ptr ? std::string{m_ptr} : std::string{};
59 std::string_view view()
const {
60 return m_ptr ? std::string_view{m_ptr} : std::string_view{};
63 operator std::string()
const {
67 operator std::string_view()
const {
76 SysString& operator=(
const std::string &str) {
81 bool operator==(
const SysString &other)
const {
82 if (m_ptr == other.m_ptr)
85 if (!m_ptr || !other.m_ptr)
88 return std::strcmp(m_ptr, other.m_ptr) == 0;
91 bool operator!=(
const SysString &other)
const {
92 return !(*
this == other);
97 const char *m_ptr =
nullptr;