| 671 | const_reverse_iterator rend() const FL_NOEXCEPT { return const_reverse_iterator(begin()); } |
| 672 | |
| 673 | const_iterator cbegin() const FL_NOEXCEPT { |
| 674 | return mArray ? static_cast<const T*>(mArray) : nullptr; |
| 675 | } |
| 676 | const_iterator cend() const FL_NOEXCEPT { |
| 677 | return mArray ? static_cast<const T*>(mArray) + mSize : nullptr; |
| 678 | } |