qxLib
utils.h
Go to the documentation of this file.
1 /**
2 
3  @file utils.h
4  @author Khrapov
5  @date 6.08.2022
6  @copyright © Nick Khrapov, 2022. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <algorithm>
12 #include <array>
13 
14 namespace qx
15 {
16 
17 /**
18  @brief Call destructors
19  @tparam iterator_t - iterator type
20  @param itStart - start iterator
21  @param itEnd - end iterator
22 **/
23 template<class iterator_t>
24 inline void destruct(iterator_t itStart, iterator_t itEnd);
25 
26 /**
27  @brief Fill array with value in constructor
28  @tparam N - number of elements in array
29  @tparam T - array value type
30  @param init_val - init value
31  @retval - filled array
32 **/
33 template<size_t N, class T>
34 constexpr auto make_array(T init_val = T());
35 
36 /**
37  @brief Join arrays at compile-time
38  @tparam T - array value_type
39  @tparam LeftLength - left array length
40  @tparam RightLength - right array length
41  @param rhs - left array
42  @param lhs - right array
43  @retval - new array where elements from the right array placed after elements from the left array
44 **/
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);
49 
50 /**
51  @brief Create a container by constructing each element from the corresponding
52  element of the original container
53  @tparam result_container_t - target container type, must support value_type and push_back
54  @tparam container_t - original container type, must support forward iteration
55  @param from - original container
56  @retval - target container
57 **/
58 template<class result_container_t, class container_t>
59 result_container_t make_container(const container_t& from);
60 
61 /**
62  @brief Get the size of memory allocated for container elements
63  @tparam container_t - container type
64  @param container - container const ref
65  @retval - the size of memory allocated for container elements
66 **/
67 template<class container_t>
68 constexpr size_t bytes_size(const container_t& container);
69 
70 } // namespace qx
71 
72 #include <qx/containers/utils.inl>
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