| 139 | } |
| 140 | |
| 141 | size_t StringValue::Size() const { |
| 142 | return NativeValue([](const auto& alternative) -> size_t { |
| 143 | return internal::Utf8CodePointCount(alternative); |
| 144 | }); |
| 145 | } |
| 146 | |
| 147 | bool StringValue::IsEmpty() const { |
| 148 | return NativeValue( |
nothing calls this directly
no test coverage detected