| 128 | } |
| 129 | |
| 130 | size_t BytesValue::Size() const { |
| 131 | return NativeValue( |
| 132 | [](const auto& alternative) -> size_t { return alternative.size(); }); |
| 133 | } |
| 134 | |
| 135 | bool BytesValue::IsEmpty() const { |
| 136 | return NativeValue( |
nothing calls this directly
no test coverage detected