23 template<
class iterator_t>
24 inline void destruct(iterator_t itStart, iterator_t itEnd);
33 template<
size_t N,
class T>
45 template<
class T, std::
size_t LeftLength, std::
size_t RightLength>
46 constexpr std::array<T, LeftLength + RightLength>
join_arrays(
47 std::array<T, LeftLength> rhs,
48 std::array<T, RightLength> lhs);
58 template<
class result_container_t,
class container_t>
67 template<
class container_t>
68 constexpr
size_t bytes_size(
const container_t& container);
void destruct(iterator_t itStart, iterator_t itEnd)
Call destructors.
constexpr size_t bytes_size(const container_t &container)
Get the size of memory allocated for container elements.
constexpr auto make_array(T init_val=T())
Fill array with value in constructor.
result_container_t make_container(const container_t &from)
Create a container by constructing each element from the corresponding element of the original contai...
constexpr std::array< T, LeftLength+RightLength > join_arrays(std::array< T, LeftLength > rhs, std::array< T, RightLength > lhs)
Join arrays at compile-time.