[#absl-StrJoin-032] = xref:absl.adoc[absl]::StrJoin :relfileprefix: ../ :mrdocs: Joins the elements of a `std::tuple` using a custom formatter. == Synopsis Declared in `<absl/strings/str_join.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename... T, typename Formatter> std::string StrJoin( std::tuple<T...> const& value, std::string_view separator, Formatter&& fmt); ---- == Return Value The joined string. == Parameters [cols="1,4"] |=== | Name| Description | *value* | The tuple of elements to join. | *separator* | The separator placed between joined elements. | *fmt* | The formatter used to convert each element to a string. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#