| 91 | |
| 92 | template <class TT, typename = std::enable_if_t<std::is_same<std::remove_const_t<T>, std::remove_const_t<TT>>::value>> |
| 93 | bool operator==(const TArrayRef<TT>& other) const { |
| 94 | return (S_ == other.size()) && std::equal(begin(), end(), other.begin()); |
| 95 | } |
| 96 | |
| 97 | constexpr inline T* data() const noexcept { |
| 98 | return T_; |