|
Advanced Chunk Processing Library 0.2.0
A comprehensive C++ library for advanced data chunking strategies and processing operations
|
A stack-based chunk structure for LIFO operations. More...
#include <advanced_structures.hpp>
Public Member Functions | |
| bool | empty () const |
| T | pop () |
| void | push (const T &value) |
| size_t | size () const |
Private Attributes | |
| std::stack< T > | data_ |
A stack-based chunk structure for LIFO operations.
| T | The type of elements stored in the chunk stack |
Definition at line 397 of file advanced_structures.hpp.
|
inline |
Definition at line 416 of file advanced_structures.hpp.
References advanced_structures::ChunkStack< T >::data_.
Referenced by TEST().
|
inline |
Definition at line 406 of file advanced_structures.hpp.
References advanced_structures::ChunkStack< T >::data_.
Referenced by TEST().
|
inline |
Definition at line 402 of file advanced_structures.hpp.
References advanced_structures::ChunkStack< T >::data_.
Referenced by TEST().
|
inline |
Definition at line 412 of file advanced_structures.hpp.
References advanced_structures::ChunkStack< T >::data_.
Referenced by TEST().
|
private |
Definition at line 399 of file advanced_structures.hpp.
Referenced by advanced_structures::ChunkStack< T >::empty(), advanced_structures::ChunkStack< T >::pop(), advanced_structures::ChunkStack< T >::push(), and advanced_structures::ChunkStack< T >::size().