|
CeresEngine 0.2.0
A game development framework
|
A codec that implements binary serialization for a trivially copyable type T.
More...
#include <CeresEngine/Foundation/IO/Stream.hpp>
Static Public Member Functions | |
| template<typename S > | |
| static T | read (S &stream) |
| template<typename S > | |
| static Async< T > | asyncRead (S &stream) |
| template<typename S > | |
| static void | write (S &stream, const T &value) |
| template<typename S > | |
| static Async | asyncWrite (S &stream, T value) |
A codec that implements binary serialization for a trivially copyable type T.
|
inlinestatic |