Byte Array Serialization
Public Member Functions | List of all members
bas::PoppedArray< T > Class Template Reference

The PoppedArray is the return value of SerializedObject::popDataArray<>(). More...

#include <bas.hpp>

Public Member Functions

size_t size (void)
 Returns the size of the array popped by popDataArray<>(). More...
 
T * get (void)
 Returns the pointer to the array popped by popDataArray<>(). More...
 

Detailed Description

template<typename T>
class bas::PoppedArray< T >

The PoppedArray is the return value of SerializedObject::popDataArray<>().

The PoppedArray contains the data popped by popDataArray<>() along with the size of the popped data.

Examples
pushpoparray.cpp.

Member Function Documentation

◆ get()

template<typename T>
T* bas::PoppedArray< T >::get ( void  )
inline

Returns the pointer to the array popped by popDataArray<>().

Be mindful that this memory space is destroyed with the PoppedArray.

Returns
Pointer to the memory space containing the popped array.

◆ size()

template<typename T>
size_t bas::PoppedArray< T >::size ( void  )
inline

Returns the size of the array popped by popDataArray<>().

Returns
size of the popped array.

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