Return true if value is NOTFOUND or ends in -NOTFOUND. */
| 74 | } |
| 75 | /** Return true if value is NOTFOUND or ends in -NOTFOUND. */ |
| 76 | bool IsNOTFOUND() const noexcept |
| 77 | { |
| 78 | return this->Value && cmValue::IsNOTFOUND(cm::string_view(*this->Value)); |
| 79 | } |
| 80 | bool IsEmpty() const noexcept |
| 81 | { |
| 82 | return !this->Value || this->Value->empty(); |
no outgoing calls
no test coverage detected