| 34 | |
| 35 | std::string const* Get() const noexcept { return this->Value; } |
| 36 | char const* GetCStr() const noexcept |
| 37 | { |
| 38 | return this->Value ? this->Value->c_str() : nullptr; |
| 39 | } |
| 40 | |
| 41 | std::string const* operator->() const noexcept |
| 42 | { |
no test coverage detected