| 38 | using const_reverse_iterator = std::reverse_iterator<const_iterator>; |
| 39 | |
| 40 | constexpr inline TArrayRef() noexcept |
| 41 | : T_(nullptr) |
| 42 | , S_(0) |
| 43 | { |
| 44 | } |
| 45 | |
| 46 | constexpr inline TArrayRef(T* data Y_LIFETIME_BOUND, size_t len) noexcept |
| 47 | : T_(data) |
nothing calls this directly
no test coverage detected