std::basic_regex<CharT,Traits>::imbue
Min standard notice:
Replaces the current locale with loc. The regular expression does not match any character sequence after the call.
# Declarations
locale_type imbue( locale_type loc );
(since C++11)
# Parameters
loc: new locale to use
# Return value
The locale before the call to this function. Effectively returns the result of expression traits_i.imbue(loc).
# Example
This section is incompleteReason: no example