Lines Matching full:noexcept
20 Vec() noexcept;
23 Vec(Vec &&) noexcept;
24 ~Vec() noexcept;
26 Vec &operator=(Vec &&) noexcept;
29 size_t size() const noexcept;
30 bool empty() const noexcept;
31 const T *data() const noexcept;
32 T *data() noexcept;
33 size_t capacity() const noexcept;
35 const T &operator[](size_t n) const noexcept;
40 T &operator[](size_t n) noexcept;
54 iterator begin() noexcept;
55 iterator end() noexcept;
58 const_iterator begin() const noexcept;
59 const_iterator end() const noexcept;
60 const_iterator cbegin() const noexcept;
61 const_iterator cend() const noexcept;
63 void swap(Vec &) noexcept;
74 # T &operator*() const noexcept;
75 # T *operator->() const noexcept;
76 # T &operator[](ptrdiff_t) const noexcept;
78 # iterator &operator++() noexcept;
79 # iterator operator++(int) noexcept;
80 # iterator &operator--() noexcept;
81 # iterator operator--(int) noexcept;
83 # iterator &operator+=(ptrdiff_t) noexcept;
84 # iterator &operator-=(ptrdiff_t) noexcept;
85 # iterator operator+(ptrdiff_t) const noexcept;
86 # iterator operator-(ptrdiff_t) const noexcept;
87 # ptrdiff_t operator-(const iterator &) const noexcept;
89 # bool operator==(const iterator &) const noexcept;
90 # bool operator!=(const iterator &) const noexcept;
91 # bool operator<(const iterator &) const noexcept;
92 # bool operator<=(const iterator &) const noexcept;
93 # bool operator>(const iterator &) const noexcept;
94 # bool operator>=(const iterator &) const noexcept;
105 # const T &operator*() const noexcept;
106 # const T *operator->() const noexcept;
107 # const T &operator[](ptrdiff_t) const noexcept;
109 # const_iterator &operator++() noexcept;
110 # const_iterator operator++(int) noexcept;
111 # const_iterator &operator--() noexcept;
112 # const_iterator operator--(int) noexcept;
114 # const_iterator &operator+=(ptrdiff_t) noexcept;
115 # const_iterator &operator-=(ptrdiff_t) noexcept;
116 # const_iterator operator+(ptrdiff_t) const noexcept;
117 # const_iterator operator-(ptrdiff_t) const noexcept;
118 # ptrdiff_t operator-(const const_iterator &) const noexcept;
120 # bool operator==(const const_iterator &) const noexcept;
121 # bool operator!=(const const_iterator &) const noexcept;
122 # bool operator<(const const_iterator &) const noexcept;
123 # bool operator<=(const const_iterator &) const noexcept;
124 # bool operator>(const const_iterator &) const noexcept;
125 # bool operator>=(const const_iterator &) const noexcept;