| 1027 | } |
| 1028 | |
| 1029 | void ByteString::SetLarge(const absl::Cord& cord) { |
| 1030 | ABSL_DCHECK_GT(cord.size(), kSmallByteStringCapacity); |
| 1031 | rep_.header.kind = ByteStringKind::kLarge; |
| 1032 | ::new (static_cast<void*>(&rep_.large.data[0])) absl::Cord(cord); |
| 1033 | } |
| 1034 | |
| 1035 | void ByteString::SetLarge(absl::Cord&& cord) { |
| 1036 | ABSL_DCHECK_GT(cord.size(), kSmallByteStringCapacity); |