My Project
Loading...
Searching...
No Matches
Opm::Serialization::detail::Packing< true, T > Struct Template Reference

Packaging for pod data. More...

#include <MemPacker.hpp>

Static Public Member Functions

static std::size_t packSize (const T &data)
 Calculates the pack size for a POD.
 
static std::size_t packSize (const T *, std::size_t n)
 Calculates the pack size for an array of POD.
 
static void pack (const T &data, std::vector< char > &buffer, int &position)
 Pack a POD.
 
static void pack (const T *data, std::size_t n, std::vector< char > &buffer, int &position)
 Pack an array of POD.
 
static void unpack (T &data, std::vector< char > &buffer, int &position)
 Unpack a POD.
 
static void unpack (T *data, std::size_t n, std::vector< char > &buffer, int &position)
 Unpack an array of POD.
 

Detailed Description

template<class T>
struct Opm::Serialization::detail::Packing< true, T >

Packaging for pod data.

Member Function Documentation

◆ pack() [1/2]

template<class T >
static void Opm::Serialization::detail::Packing< true, T >::pack ( const T &  data,
std::vector< char > &  buffer,
int &  position 
)
inlinestatic

Pack a POD.

Parameters
dataThe variable to pack
bufferBuffer to pack into
positionPosition in buffer to use

◆ pack() [2/2]

template<class T >
static void Opm::Serialization::detail::Packing< true, T >::pack ( const T *  data,
std::size_t  n,
std::vector< char > &  buffer,
int &  position 
)
inlinestatic

Pack an array of POD.

Parameters
dataThe array to pack
nLength of array
bufferBuffer to pack into
positionPosition in buffer to use

◆ packSize() [1/2]

template<class T >
static std::size_t Opm::Serialization::detail::Packing< true, T >::packSize ( const T &  data)
inlinestatic

Calculates the pack size for a POD.

Parameters
dataThe data to pack

◆ packSize() [2/2]

template<class T >
static std::size_t Opm::Serialization::detail::Packing< true, T >::packSize ( const T *  ,
std::size_t  n 
)
inlinestatic

Calculates the pack size for an array of POD.

Parameters
dataThe array to pack
nLength of array

◆ unpack() [1/2]

template<class T >
static void Opm::Serialization::detail::Packing< true, T >::unpack ( T &  data,
std::vector< char > &  buffer,
int &  position 
)
inlinestatic

Unpack a POD.

Parameters
dataThe variable to unpack
bufferBuffer to unpack from
positionPosition in buffer to use

◆ unpack() [2/2]

template<class T >
static void Opm::Serialization::detail::Packing< true, T >::unpack ( T *  data,
std::size_t  n,
std::vector< char > &  buffer,
int &  position 
)
inlinestatic

Unpack an array of POD.

Parameters
dataThe array to unpack
nLength of array
bufferBuffer to unpack from
positionPosition in buffer to use

The documentation for this struct was generated from the following file: