Lines Matching full:noexcept
16 Str() noexcept;
17 Str(const Str &) noexcept;
18 Str(const String &) noexcept;
25 Str &operator=(const Str &) noexcept;
30 const char *data() const noexcept;
31 size_t size() const noexcept;
32 size_t length() const noexcept;
33 bool empty() const noexcept;
37 const_iterator begin() const noexcept;
38 const_iterator end() const noexcept;
39 const_iterator cbegin() const noexcept;
40 const_iterator cend() const noexcept;
42 bool operator==(const Str &) const noexcept;
43 bool operator!=(const Str &) const noexcept;
44 bool operator<(const Str &) const noexcept;
45 bool operator<=(const Str &) const noexcept;
46 bool operator>(const Str &) const noexcept;
47 bool operator>=(const Str &) const noexcept;
49 void swap(Str &) noexcept;