std::regex_traits<CharT>::imbue
From cppreference.com
< cpp | regex | regex traits
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Text processing library
Regular expressions library (C++11)
Formatting library (C++20)
(C++17)
(C++17)
(C++17)
(C++17)
(C++17)
(C++26)
Regular expressions library
Classes
(C++11)
(C++11)
(C++11)
Algorithms
(C++11)
(C++11)
(C++11)
Iterators
(C++11)
(C++11)
Exceptions
(C++11)
Traits
(C++11)
Constants
(C++11)
(C++11)
(C++11)
Regex Grammar
(C++11)
std::regex_traits
Member functions
regex_traits::imbue
locale_type imbue( locale_type loc );
(since C++11)
Replaces the current locale with a copy of loc. If loc is different than the current locale, then all cached data is invalidated.
After the call getloc() == loc.
Contents
[edit] Parameters
loc
-
the locale to imbue
[edit] Return value
The current locale of the traits object.
If imbue()
has been never called for this object, then the global locale at the time of the call is returned. Otherwise, the locale passed to the last call to imbue()
is returned.
[edit] Example
This section is incomplete
Reason: no example
Reason: no example