[#BloombergLP-bdldfp-DecimalNumGet-do_get-01] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdldfp.adoc[bdldfp]::xref:BloombergLP/bdldfp/DecimalNumGet.adoc[DecimalNumGet]::do_get :relfileprefix: ../../../ :mrdocs: `do_get` overloads == Synopses Declared in `<bdldfp_decimal.h>` Interpret characters from the half‐open iterator range denoted by `begin` and `end` and store the resulting `Decimal128` into `value`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- virtual xref:BloombergLP/bdldfp/DecimalNumGet/iter_type.adoc[iter_type] xref:BloombergLP/bdldfp/DecimalNumGet/do_get-0ea6.adoc[do_get]( xref:BloombergLP/bdldfp/DecimalNumGet/iter_type.adoc[iter_type] begin, xref:BloombergLP/bdldfp/DecimalNumGet/iter_type.adoc[iter_type] end, std::ios_base& str, std::ios_base::iostate& err, xref:BloombergLP/bdldfp/Decimal128.adoc[Decimal128]& value) const; ---- [.small]#xref:BloombergLP/bdldfp/DecimalNumGet/do_get-0ea6.adoc[_» more..._]# Interpret characters from the half‐open iterator range denoted by the specified `begin` and `end`, generate a decimal floating‐point number and store it into the specified `value`. During conversion the formatting flags of the specified `str` (`str.flags()`) are obeyed; character classifications are determined by the `bsl::ctype` while punctuation characters are determined by the `bsl::numpunct` facet imbued to the `str` stream‐base. Use the specified `err` to report back failure or EOF streams states. For further, more detailed information please consult the section [lib.facet.num.get.virtuals]of the C++ Standard. Note that for the conversions to the `Decimal32`, 64 and 128 types the conversion specifiers are %Hg, %Dg and %DDg, respectively. Also note that these (possibly overridden) `do_get` virtual function are used by every formatted C++ stream input operator call (`in >> aDecNumber`). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- virtual xref:BloombergLP/bdldfp/DecimalNumGet/iter_type.adoc[iter_type] xref:BloombergLP/bdldfp/DecimalNumGet/do_get-08.adoc[do_get]( xref:BloombergLP/bdldfp/DecimalNumGet/iter_type.adoc[iter_type] begin, xref:BloombergLP/bdldfp/DecimalNumGet/iter_type.adoc[iter_type] end, std::ios_base& str, std::ios_base::iostate& err, xref:BloombergLP/bdldfp/Decimal32.adoc[Decimal32]& value) const; ---- [.small]#xref:BloombergLP/bdldfp/DecimalNumGet/do_get-08.adoc[_» more..._]# Interpret characters from the half‐open iterator range denoted by `begin` and `end` and store the resulting `Decimal64` into `value`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- virtual xref:BloombergLP/bdldfp/DecimalNumGet/iter_type.adoc[iter_type] xref:BloombergLP/bdldfp/DecimalNumGet/do_get-0ea5.adoc[do_get]( xref:BloombergLP/bdldfp/DecimalNumGet/iter_type.adoc[iter_type] begin, xref:BloombergLP/bdldfp/DecimalNumGet/iter_type.adoc[iter_type] end, std::ios_base& str, std::ios_base::iostate& err, xref:BloombergLP/bdldfp/Decimal64.adoc[Decimal64]& value) const; ---- [.small]#xref:BloombergLP/bdldfp/DecimalNumGet/do_get-0ea5.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#