5 namespace tdc {
namespace esp {
6 template<
typename T,
size_t N>
8 std::array<T, N> m_array;
14 m_array[m_size] = std::move(t);
20 return std::move(m_array[m_size]);
24 auto e = std::move(m_array[0]);
26 for(
size_t i = 0; i < m_size - 1; i++) {
27 m_array[i] = m_array[i + 1];
Contains the text compression and encoding framework.
A view into a slice of memory.
const value_type * data() const noexcept
The backing memory location.