std::use_facet
From cppreference.com
Defined in header <locale>
|
||
template< class Facet > const Facet& use_facet( const std::locale& loc ); |
||
Obtains a reference to a facet implemented by loc
.
Contents |
Parameters
loc | - | the locale object to query |
Return value
Returns a reference the facet. The reference returned by this function is valid as long as any Template:cpp object exists that implements Facet
.