[#absl-DereferenceFormatter-0a] = xref:absl.adoc[absl]::DereferenceFormatter :relfileprefix: ../ :mrdocs: Formats its argument by dereferencing it and then applying the given formatter. This formatter is useful for formatting a container of pointer‐to‐T. This pattern often shows up when joining repeated fields in protocol buffers. == Synopsis Declared in `<absl/strings/str_join.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename Formatter> /* implementation-defined */::DereferenceFormatterImpl<Formatter> DereferenceFormatter(Formatter&& f); ---- == Return Value A formatter that dereferences each element before formatting it. == Parameters [cols="1,4"] |=== | Name| Description | *f* | The formatter applied to the dereferenced element. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#