| 251 | */ |
| 252 | template <typename T> |
| 253 | TArrayRef<const char> as_bytes(TArrayRef<T> arrayRef Y_LIFETIME_BOUND) noexcept { |
| 254 | return TArrayRef<const char>( |
| 255 | reinterpret_cast<const char*>(arrayRef.data()), |
| 256 | arrayRef.size_bytes()); |
| 257 | } |
| 258 | |
| 259 | /** |
| 260 | * Obtains a view to the writable object representation of the elements of the TArrayRef arrayRef. |
no test coverage detected