| 188 | } |
| 189 | |
| 190 | google::protobuf::Arena* absl_nullable ByteString::GetArena() const { |
| 191 | switch (GetKind()) { |
| 192 | case ByteStringKind::kSmall: |
| 193 | return GetSmallArena(); |
| 194 | case ByteStringKind::kMedium: |
| 195 | return GetMediumArena(); |
| 196 | case ByteStringKind::kLarge: |
| 197 | return nullptr; |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | bool ByteString::empty() const { |
| 202 | switch (GetKind()) { |