template <size_t max_size>
struct AlphaNumBuffer
Defined at line 120 of file ../../third_party/abseil-cpp/absl/strings/str_cat.h
AlphaNumBuffer allows a way to pass a string to StrCat without having to do
memory allocation. It is simply a pair of a fixed-size character array, and
a size. Please don't use outside of absl, yet.
Public Members
std::array<char, max_size> data
size_t size