| 263 | */ |
| 264 | template <typename T> |
| 265 | TArrayRef<char> as_writable_bytes(TArrayRef<T> arrayRef Y_LIFETIME_BOUND) noexcept { |
| 266 | return TArrayRef<char>( |
| 267 | reinterpret_cast<char*>(arrayRef.data()), |
| 268 | arrayRef.size_bytes()); |
| 269 | } |
| 270 | |
| 271 | template <class Range> |
| 272 | constexpr TArrayRef<const typename Range::value_type> MakeArrayRef(const Range& range) noexcept { |
no test coverage detected