| 763 | } |
| 764 | |
| 765 | std::string_view Value::asStringRef() const |
| 766 | { |
| 767 | if (_type == Type::STRING) |
| 768 | return *_field.strVal; |
| 769 | return Value::EmptyString; |
| 770 | } |
| 771 | |
| 772 | ValueVector& Value::asValueVector() |
| 773 | { |
no outgoing calls
no test coverage detected