| 229 | } |
| 230 | |
| 231 | inline void ReplaceWith(int dimensions_count, const int32* dims_data) { |
| 232 | Resize(dimensions_count); |
| 233 | int32* dst_dims = DimsData(); |
| 234 | std::memcpy(dst_dims, dims_data, dimensions_count * sizeof(int32)); |
| 235 | } |
| 236 | |
| 237 | template <typename T> |
| 238 | inline void BuildFrom(const T& src_iterable) { |