Standard C++ Library Reference ISO/IEC (VERSION3)

The fourth virtual protected member function:
virtual iter_type do_get(iter_type first, iter_type last,
ios_base& iosbase, ios_base::iostate& state,
long double& val) const;
behaves the same the third, except that the equivalent scan conversion specifier is Lf.
The fifth virtual protected member function:
virtual iter_type do_get(iter_type first, iter_type last,
ios_base& iosbase, ios_base::iostate& state,
void *& val) const;
behaves the same the first, except that the equivalent scan conversion specifier is p.
The sixth virtual protected member function:
virtual iter_type do_get(iter_type first, iter_type last,
ios_base& iosbase, ios_base::iostate& state,
bool& val) const;
behaves the same as the first, except that it endeavors to match a complete, nonempty boolean input field. If successful
it converts the boolean input field to a value of type bool and stores that value in val.
A boolean input field takes one of two forms. If iosbase.flags() & ios_base::boolalpha is false, it is the
same as an integer input field, except that the converted value must be either 0 (for false) or 1 (for true). Otherwise, the
sequence must match either fac.falsename() (for false), or fac.truename() (for true).
num_get::get
iter_type get(iter_type first, iter_type last,
ios_base& iosbase, ios_base::iostate& state,
long& val) const;
iter_type get(iter_type first, iter_type last,
ios_base& iosbase, ios_base::iostate& state,
unsigned long& val) const;
iter_type get(iter_type first, iter_type last,
ios_base& iosbase, ios_base::iostate& state,
double& val) const;
iter_type get(iter_type first, iter_type last,
ios_base& iosbase, ios_base::iostate& state,
long double& val) const;
iter_type get(iter_type first, iter_type last,
ios_base& iosbase, ios_base::iostate& state,
void *& val) const;
iter_type get(iter_type first, iter_type last,
ios_base& iosbase, ios_base::iostate& state,
bool& val) const;
All member functions return do_get(first, last, iosbase, state, val).
num_get::iter_type
typedef InIt iter_type;
The type is a synonym for the template parameter InIt.