|
13708 | 13708 | class Allocator = allocator<EcharT>>
|
13709 | 13709 | basic_string<EcharT, traits, Allocator>
|
13710 | 13710 | string(const Allocator& a = Allocator()) const;
|
13711 |
| - std::string string() const; |
| 13711 | + std::string display_string() const; |
| 13712 | + std::string system_encoded_string() const; |
13712 | 13713 | std::wstring wstring() const;
|
13713 | 13714 | std::u8string u8string() const;
|
13714 | 13715 | std::u16string u16string() const;
|
|
13719 | 13720 | class Allocator = allocator<EcharT>>
|
13720 | 13721 | basic_string<EcharT, traits, Allocator>
|
13721 | 13722 | generic_string(const Allocator& a = Allocator()) const;
|
13722 |
| - std::string generic_string() const; |
| 13723 | + std::string generic_display_string() const; |
| 13724 | + std::string generic_system_encoded_string() const; |
13723 | 13725 | std::wstring generic_wstring() const;
|
13724 | 13726 | std::u8string generic_u8string() const;
|
13725 | 13727 | std::u16string generic_u16string() const;
|
@@ -14690,13 +14692,13 @@
|
14690 | 14692 | \ref{fs.path.cvt}.
|
14691 | 14693 | \end{itemdescr}
|
14692 | 14694 |
|
14693 |
| -\indexlibrarymember{string}{path}% |
| 14695 | +\indexlibrarymember{system_encoded_string}{path}% |
14694 | 14696 | \indexlibrarymember{wstring}{path}%
|
14695 | 14697 | \indexlibrarymember{u8string}{path}%
|
14696 | 14698 | \indexlibrarymember{u16string}{path}%
|
14697 | 14699 | \indexlibrarymember{u32string}{path}%
|
14698 | 14700 | \begin{itemdecl}
|
14699 |
| -std::string string() const; |
| 14701 | +std::string system_encoded_string() const; |
14700 | 14702 | std::wstring wstring() const;
|
14701 | 14703 | std::u8string u8string() const;
|
14702 | 14704 | std::u16string u16string() const;
|
|
14714 | 14716 | by \ref{fs.path.cvt}.
|
14715 | 14717 | \end{itemdescr}
|
14716 | 14718 |
|
| 14719 | +\indexlibrarymember{display_string}{path}% |
| 14720 | +\begin{itemdecl} |
| 14721 | +std::string display_string() const; |
| 14722 | +\end{itemdecl} |
| 14723 | + |
| 14724 | +\begin{itemdescr} |
| 14725 | +\pnum |
| 14726 | +\returns |
| 14727 | +\tcode{format("{}", *this)}. |
| 14728 | +\begin{note} |
| 14729 | +The returned string is suitable for use with formatting\iref{format.functions} |
| 14730 | +and print functions\iref{print.fun}. |
| 14731 | +\end{note} |
| 14732 | +\end{itemdescr} |
14717 | 14733 |
|
14718 | 14734 | \rSec4[fs.path.generic.obs]{Generic format observers}
|
14719 | 14735 |
|
@@ -14753,13 +14769,13 @@
|
14753 | 14769 | \ref{fs.path.cvt}.
|
14754 | 14770 | \end{itemdescr}
|
14755 | 14771 |
|
14756 |
| -\indexlibrarymember{generic_string}{path}% |
| 14772 | +\indexlibrarymember{generic_system_encoded_string}{path}% |
14757 | 14773 | \indexlibrarymember{generic_wstring}{path}%
|
14758 | 14774 | \indexlibrarymember{generic_u8string}{path}%
|
14759 | 14775 | \indexlibrarymember{generic_u16string}{path}%
|
14760 | 14776 | \indexlibrarymember{generic_u32string}{path}%
|
14761 | 14777 | \begin{itemdecl}
|
14762 |
| -std::string generic_string() const; |
| 14778 | +std::string generic_system_encoded_string() const; |
14763 | 14779 | std::wstring generic_wstring() const;
|
14764 | 14780 | std::u8string generic_u8string() const;
|
14765 | 14781 | std::u16string generic_u16string() const;
|
|
14776 | 14792 | Conversion, if any, is specified by~\ref{fs.path.cvt}.
|
14777 | 14793 | \end{itemdescr}
|
14778 | 14794 |
|
| 14795 | +\indexlibrarymember{generic_display_string}{path}% |
| 14796 | +\begin{itemdecl} |
| 14797 | +std::string generic_display_string() const; |
| 14798 | +\end{itemdecl} |
| 14799 | + |
| 14800 | +\begin{itemdescr} |
| 14801 | +\pnum |
| 14802 | +\returns |
| 14803 | +\tcode{format("{:g}", *this)}. |
| 14804 | +\begin{note} |
| 14805 | +The returned string is suitable for use with formatting\iref{format.functions} |
| 14806 | +and print functions\iref{print.fun}. |
| 14807 | +\end{note} |
| 14808 | +\end{itemdescr} |
| 14809 | + |
14779 | 14810 | \rSec4[fs.path.compare]{Compare}
|
14780 | 14811 |
|
14781 | 14812 | \indexlibrarymember{compare}{path}%
|
|
0 commit comments