|
time_get::get_weekdaypublic member function
iter_type get_weekday ( iter_type s, iter_type end, ios_base& str, ios_base::iostate& err, tm* t) const; Read weekday Parses the sequence of characters between s and end for the name of a weekday, and stores its value into the tm object pointed by t.The function extracts characters until the character extracted cannot be part of a valid weekday expression or end is reached. The next character in the sequence is pointed by the iterator returned by the function. What constitutes a valid name of a weekday, or whether abbreviations are accepted, depends on the locale (it matches the 'a' or 'A' specifiers in the strftime C function). If successful, the function may set any relevant members of the tm structure t (generally, tm_wday). The remaining members are left unchanged. The function updates err with the error status if necessary: If the sequence of characters cannot produce any valid value for the tm struct t according to its formatting rules, the function sets err to ios_base::failbit. If the function exhausts the sequence of characters (i.e., it reaches end) during its operations, ios_base::eofbit is set in err (both failbit and eofbit may be set by a single operation). Otherwise, ios_base::goodbit is set as err's value, indicating success. During its operation, the version of this function in the generic template simply calls the virtual protected member do_get_weekday, which is the member function in charge of performing the actions described above. Parameters
Return valueThe next character in the sequence right after where the extraction operation ended.iter_type is a member alias of the second template parameter of time_get (i.e., the facet's iterator type). Example
Output:
See also
|