General-purpose automatically managed/resized buffer. More...
#include <buffer.hpp>


Public Member Functions | |
| Buffer () | |
| Creates an empty Buffer. More... | |
| Buffer (size_t size) | |
| Creates a Buffer with pre-allocated size. More... | |
| Buffer (const void *buf, size_t length) | |
| Creates a Buffer by copying contents from a raw buffer. More... | |
| template<class InputIt > | |
| Buffer (InputIt first, InputIt last) | |
| Creates a Buffer by copying the elements of the range [first, last) More... | |
| template<class T > | |
| T * | get () noexcept |
| template<class T > | |
| const T * | get () const noexcept |
General-purpose automatically managed/resized buffer.
In most respect, the Buffer class is equivalent to a std::vector<uint8_t>, and it in fact uses the latter as a base class. In addition to that, it provides the get<T>() helper method that automatically casts the returned pointer to the requested type.
Definition at line 40 of file buffer.hpp.
|
default |
Creates an empty Buffer.
|
explicit |
Creates a Buffer with pre-allocated size.
| size | size of the Buffer to be allocated |
Definition at line 40 of file buffer.cpp.
| ndn::Buffer::Buffer | ( | const void * | buf, |
| size_t | length | ||
| ) |
Creates a Buffer by copying contents from a raw buffer.
| buf | const pointer to buffer to copy |
| length | length of the buffer to copy |
Definition at line 45 of file buffer.cpp.
|
inline |
Creates a Buffer by copying the elements of the range [first, last)
| first | an input iterator to the first element to copy |
| last | an input iterator to the element immediately following the last element to copy |
Definition at line 64 of file buffer.hpp.
|
inlinenoexcept |
Definition at line 73 of file buffer.hpp.
|
inlinenoexcept |
Definition at line 82 of file buffer.hpp.