|
938 | 938 | allocator_type get_allocator() const noexcept;
|
939 | 939 |
|
940 | 940 | template<class T>
|
941 |
| - size_type find (const T& t, size_type pos = 0) const @noexcept(\seebelow)@; |
| 941 | + size_type find (const T& t, size_type pos = 0) const noexcept(@\seebelow@); |
942 | 942 | size_type find (const basic_string& str, size_type pos = 0) const noexcept;
|
943 | 943 | size_type find (const charT* s, size_type pos, size_type n) const;
|
944 | 944 | size_type find (const charT* s, size_type pos = 0) const;
|
945 |
| - size_type find (charT c, size_type pos = 0) const @noexcept@; |
| 945 | + size_type find (charT c, size_type pos = 0) const noexcept; |
946 | 946 | template<class T>
|
947 |
| - size_type rfind(const T& t, size_type pos = npos) const @noexcept(\seebelow)@; |
| 947 | + size_type rfind(const T& t, size_type pos = npos) const noexcept(@\seebelow@); |
948 | 948 | size_type rfind(const basic_string& str, size_type pos = npos) const noexcept;
|
949 | 949 | size_type rfind(const charT* s, size_type pos, size_type n) const;
|
950 | 950 | size_type rfind(const charT* s, size_type pos = npos) const;
|
951 |
| - size_type rfind(charT c, size_type pos = npos) const @noexcept@; |
| 951 | + size_type rfind(charT c, size_type pos = npos) const noexcept; |
952 | 952 |
|
953 | 953 | template<class T>
|
954 |
| - size_type find_first_of(const T& t, size_type pos = 0) const @noexcept(\seebelow)@; |
| 954 | + size_type find_first_of(const T& t, size_type pos = 0) const noexcept(@\seebelow@); |
955 | 955 | size_type find_first_of(const basic_string& str, size_type pos = 0) const noexcept;
|
956 | 956 | size_type find_first_of(const charT* s, size_type pos, size_type n) const;
|
957 | 957 | size_type find_first_of(const charT* s, size_type pos = 0) const;
|
958 |
| - size_type find_first_of(charT c, size_type pos = 0) const @noexcept@; |
| 958 | + size_type find_first_of(charT c, size_type pos = 0) const noexcept; |
959 | 959 | template<class T>
|
960 |
| - size_type find_last_of (const T& t, size_type pos = npos) const @noexcept(\seebelow)@; |
| 960 | + size_type find_last_of (const T& t, size_type pos = npos) const noexcept(@\seebelow@); |
961 | 961 | size_type find_last_of (const basic_string& str, size_type pos = npos) const noexcept;
|
962 | 962 | size_type find_last_of (const charT* s, size_type pos, size_type n) const;
|
963 | 963 | size_type find_last_of (const charT* s, size_type pos = npos) const;
|
964 |
| - size_type find_last_of (charT c, size_type pos = npos) const @noexcept@; |
| 964 | + size_type find_last_of (charT c, size_type pos = npos) const noexcept; |
965 | 965 |
|
966 | 966 | template<class T>
|
967 |
| - size_type find_first_not_of(const T& t, size_type pos = 0) const @noexcept(\seebelow)@; |
| 967 | + size_type find_first_not_of(const T& t, size_type pos = 0) const noexcept(@\seebelow@); |
968 | 968 | size_type find_first_not_of(const basic_string& str, size_type pos = 0) const noexcept;
|
969 | 969 | size_type find_first_not_of(const charT* s, size_type pos, size_type n) const;
|
970 | 970 | size_type find_first_not_of(const charT* s, size_type pos = 0) const;
|
971 |
| - size_type find_first_not_of(charT c, size_type pos = 0) const @noexcept@; |
| 971 | + size_type find_first_not_of(charT c, size_type pos = 0) const noexcept; |
972 | 972 | template<class T>
|
973 |
| - size_type find_last_not_of (const T& t, size_type pos = npos) const @noexcept(\seebelow)@; |
| 973 | + size_type find_last_not_of (const T& t, size_type pos = npos) const noexcept(@\seebelow@); |
974 | 974 | size_type find_last_not_of (const basic_string& str, size_type pos = npos) const noexcept;
|
975 | 975 | size_type find_last_not_of (const charT* s, size_type pos, size_type n) const;
|
976 | 976 | size_type find_last_not_of (const charT* s, size_type pos = npos) const;
|
977 |
| - size_type find_last_not_of (charT c, size_type pos = npos) const @noexcept@; |
| 977 | + size_type find_last_not_of (charT c, size_type pos = npos) const noexcept; |
978 | 978 |
|
979 | 979 | basic_string substr(size_type pos = 0, size_type n = npos) const;
|
980 | 980 | template<class T>
|
981 |
| - int compare(const T& t) const @noexcept(\seebelow)@; |
| 981 | + int compare(const T& t) const noexcept(@\seebelow@); |
982 | 982 | template<class T>
|
983 | 983 | int compare(size_type pos1, size_type n1, const T& t) const;
|
984 | 984 | template<class T>
|
|
2894 | 2894 | \indexlibrarymember{compare}{basic_string}%
|
2895 | 2895 | \begin{itemdecl}
|
2896 | 2896 | template<class T>
|
2897 |
| - int compare(const T& t) const @noexcept(\seebelow)@; |
| 2897 | + int compare(const T& t) const noexcept(@\seebelow@); |
2898 | 2898 | \end{itemdecl}
|
2899 | 2899 |
|
2900 | 2900 | \begin{itemdescr}
|
|
0 commit comments