std::regex_traits::getloc

From cppreference.com
< cpp‎ | regex‎ | regex traits
locale_type getloc() const;
(since C++11)

Returns 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.

Contents

[edit] Parameters

(none)

[edit] Return value

The current locale of the traits object.

[edit] Example

[edit] See also

sets the locale
(public member function)