13 template<
class iterator_t>
14 inline void destruct(iterator_t itStart, iterator_t itEnd)
16 using T =
typename iterator_t::value_type;
17 if constexpr (std::is_compound_v<T>)
19 for (
auto it = itStart; it != itEnd; ++it)
24 template<
size_t N,
class T>
32 template<
class T, std::
size_t LeftLength, std::
size_t RightLength>
33 constexpr std::array<T, LeftLength + RightLength>
join_arrays(
34 std::array<T, LeftLength> rhs,
35 std::array<T, RightLength> lhs)
37 std::array<T, LeftLength + RightLength> res;
38 auto current = std::copy(rhs.begin(), rhs.end(), res.begin());
39 std::copy(lhs.begin(), lhs.end(), current);
43 template<
class result_container_t,
class container_t>
46 result_container_t container;
48 for (
const auto& item : from)
49 container.insert(container.end(),
typename result_container_t::value_type(item));
54 template<
class container_t>
55 constexpr
size_t bytes_size(
const container_t& container)
57 return container.size() *
sizeof(
typename container_t::value_type);
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.