| 377 | ByteString(ExternalStringTag, absl::string_view string); |
| 378 | |
| 379 | constexpr ByteStringKind GetKind() const { return rep_.header.kind; } |
| 380 | |
| 381 | absl::string_view GetSmall() const { |
| 382 | ABSL_DCHECK_EQ(GetKind(), ByteStringKind::kSmall); |
no outgoing calls