[#absl-Base64Escape-0b] = xref:absl.adoc[absl]::Base64Escape :relfileprefix: ../ :mrdocs: Deprecated overload of `Base64Escape()` that writes to a `dest` buffer. == Synopsis Declared in `<absl/strings/escaping.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated("Use the string‐returning version of Base64Escape()")]] void Base64Escape( std::string_view src, std::string* dest); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]: Use the string‐returning version of Base64Escape(). Use of this entity is allowed but discouraged. ==== == Parameters [cols="1,4"] |=== | Name| Description | *src* | The string to encode. | *dest* | The output string that receives the base64‐encoded result. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#