| 91 | std::string GetSmallString() { return std::string(GetSmallStringView()); } |
| 92 | |
| 93 | absl::Cord GetSmallCord() { |
| 94 | static const absl::NoDestructor<absl::Cord> small(GetSmallStringView()); |
| 95 | return *small; |
| 96 | } |
| 97 | |
| 98 | absl::string_view GetMediumStringView() { |
| 99 | static constexpr absl::string_view medium = |
no test coverage detected