[#absl-HighPrecision-0ba2] = xref:absl.adoc[absl]::HighPrecision :relfileprefix: ../ :mrdocs: `HighPrecision` overloads == Synopses Declared in `<absl/strings/str_cat.h>` Converts a `double` to a string which, if passed to `absl::SimpleAtod`, would produce the exact same original floating point value (except in case of NaN; all NaNs are considered the same value). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- /* implementation-defined */ xref:absl/HighPrecision-0b7.adoc[HighPrecision](double d); ---- [.small]#xref:absl/HighPrecision-0b7.adoc[_» more..._]# Converts a `float` to a string which, if passed to `absl::SimpleAtof`, would produce the exact same original floating point value (except in case of NaN; all NaNs are considered the same value). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- /* implementation-defined */ xref:absl/HighPrecision-0baa.adoc[HighPrecision](float f); ---- [.small]#xref:absl/HighPrecision-0baa.adoc[_» more..._]# == Return Value A buffer holding the round‐trippable string representation. == Parameters [cols="1,4"] |=== | Name| Description | *d* | The floating point value to convert. | *f* | The floating point value to convert. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#