MCPcopy Create free account
hub / github.com/USCiLab/cereal / serializeArray

Function serializeArray

include/cereal/types/common.hpp:41–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39 //! Serialization for arrays if BinaryData is supported and we are arithmetic
40 /*! @internal */
41 template <class Archive, class T> inline
42 void serializeArray( Archive & ar, T & array, std::true_type /* binary_supported */ )
43 {
44 ar( binary_data( array, sizeof(array) ) );
45 }
46
47 //! Serialization for arrays if BinaryData is not supported or we are not arithmetic
48 /*! @internal */

Callers 1

Calls 1

binary_dataFunction · 0.85

Tested by

no test coverage detected