MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / WriteArray

Function WriteArray

Source/Engine/Serialization/WriteStream.h:280–283  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

WriteFunction · 0.70

Tested by

no test coverage detected