Files
cppdraft_translate/cppdraft/locale/numpunct/byname.md
2025-10-25 03:02:53 +03:00

826 B

[locale.numpunct.byname]

28 Text processing library [text]

28.3 Localization library [localization]

28.3.4 Standard locale categories [locale.categories]

28.3.4.4 The numeric punctuation facet [facet.numpunct]

28.3.4.4.2 Class template numpunct_byname [locale.numpunct.byname]

🔗

namespace std {templateclass numpunct_byname : public numpunct {// this class is specialized for char and wchar_t.public:using char_type = charT; using string_type = basic_string; explicit numpunct_byname(const char*, size_t refs = 0); explicit numpunct_byname(const string&, size_t refs = 0); protected:~numpunct_byname(); };}