Robotka
Knihovna pro obsluhu Robotky.
|
#include <format.h>
Veřejné metody | |
basic_memory_buffer (basic_memory_buffer &&other) FMT_NOEXCEPT | |
basic_memory_buffer & | operator= (basic_memory_buffer &&other) FMT_NOEXCEPT |
![]() | |
std::size_t | size () const FMT_NOEXCEPT |
std::size_t | capacity () const FMT_NOEXCEPT |
T * | data () FMT_NOEXCEPT |
const T * | data () const FMT_NOEXCEPT |
void | resize (std::size_t new_size) |
void | clear () |
void | reserve (std::size_t new_capacity) |
template<typename U > | |
void | append (const U *begin, const U *end) |
Chráněné metody | |
void | grow (std::size_t size) FMT_OVERRIDE |
![]() | |
void | set (T *buf_data, std::size_t buf_capacity) FMT_NOEXCEPT |
virtual void | grow (std::size_t capacity)=0 |
\rst A dynamically growing memory buffer for trivially copyable/constructible types with the first SIZE
elements stored in the object itself.
You can use one of the following type aliases for common character types:
+-------------—+---------------------------—+ | Type | Definition | +================+==============================+ | memory_buffer | basic_memory_buffer<char> | +-------------—+---------------------------—+ | wmemory_buffer | basic_memory_buffer<wchar_t> | +-------------—+---------------------------—+
Example**::
fmt::memory_buffer out; format_to(out, "The answer is {}.", 42);
This will append the following output to the out
object:
.. code-block:: none
The answer is 42.
The output can be converted to an std::string
with to_string(out)
. \endrst
|
inline |
\rst Constructs a :class:fmt::basic_memory_buffer
object moving the content of the other object to it. \endrst
|
protectedvirtual |
Increases the buffer capacity to hold at least capacity elements.
Implementuje internal::buffer< T >.
|
inline |
\rst Moves the content of the other basic_memory_buffer
object to this one. \endrst