| 208 | } |
| 209 | |
| 210 | bool text::iterator::operator==(const iterator& rhs) const noexcept |
| 211 | { |
| 212 | return this->owner == rhs.owner && this->from == rhs.from && this->size == rhs.size; |
| 213 | } |
| 214 | |
| 215 | bool text::iterator::operator!=(const iterator& rhs) const noexcept |
| 216 | { |