qxLib
utils.inl
Go to the documentation of this file.
1 /**
2 
3  @file utils.inl
4  @author Khrapov
5  @date 1.10.2023
6  @copyright © Nick Khrapov, 2023. All right reserved.
7 
8 **/
9 
10 namespace qx
11 {
12 
13 template<class iterator_t>
14 inline void destruct(iterator_t itStart, iterator_t itEnd)
15 {
16  using T = typename iterator_t::value_type;
17  if constexpr (std::is_compound_v<T>)
18  {
19  for (auto it = itStart; it != itEnd; ++it)
20  it->~T();
21  }
22 }
23 
24 template<size_t N, class T>
25 constexpr auto make_array(T init_val)
26 {
27  std::array<T, N> ret;
28  ret.fill(init_val);
29  return ret;
30 }
31 
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)
36 {
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);
40  return res;
41 }
42 
43 template<class result_container_t, class container_t>
44 result_container_t make_container(const container_t& from)
45 {
46  result_container_t container;
47 
48  for (const auto& item : from)
49  container.insert(container.end(), typename result_container_t::value_type(item));
50 
51  return container;
52 }
53 
54 template<class container_t>
55 constexpr size_t bytes_size(const container_t& container)
56 {
57  return container.size() * sizeof(typename container_t::value_type);
58 }
59 
60 } // namespace qx
void destruct(iterator_t itStart, iterator_t itEnd)
Call destructors.
Definition: utils.inl:14
constexpr size_t bytes_size(const container_t &container)
Get the size of memory allocated for container elements.
Definition: utils.inl:55
constexpr auto make_array(T init_val=T())
Fill array with value in constructor.
Definition: utils.inl:25
result_container_t make_container(const container_t &from)
Create a container by constructing each element from the corresponding element of the original contai...
Definition: utils.inl:44
constexpr std::array< T, LeftLength+RightLength > join_arrays(std::array< T, LeftLength > rhs, std::array< T, RightLength > lhs)
Join arrays at compile-time.
Definition: utils.inl:33