| 388 | } |
| 389 | |
| 390 | absl::string_view GetMedium() const { |
| 391 | ABSL_DCHECK_EQ(GetKind(), ByteStringKind::kMedium); |
| 392 | return GetMedium(rep_.medium); |
| 393 | } |
| 394 | |
| 395 | static absl::string_view GetMedium(const MediumByteStringRep& rep) { |
| 396 | return absl::string_view(rep.data, rep.size); |
no test coverage detected