| 278 | /// <param name="data">Array to write</param> |
| 279 | template<typename T, typename AllocationType = HeapAllocation> |
| 280 | DEPRECATED("Use Write method") FORCE_INLINE void WriteArray(const Array<T, AllocationType>& data) |
| 281 | { |
| 282 | Write(data); |
| 283 | } |
| 284 | |
| 285 | // Serialization of math types with float or double depending on the context (must match deserialization) |
| 286 | // Set useDouble=true to explicitly use 64-bit precision for serialized data |