qxLib
is_array_of_t.h
Go to the documentation of this file.
1 /**
2 
3  @file is_array_of_t.h
4  @author Khrapov
5  @date 20.12.2022
6  @copyright © Nick Khrapov, 2022. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <cstddef>
12 #include <type_traits>
13 
14 namespace qx
15 {
16 
17 // clang-format off
18 
19 /**
20  @struct is_array_of_t
21  @details Check if array_t is an array of T
22  @tparam array_t - possible array type
23  @tparam T - array element type
24 **/
25 template <class array_t, class T> struct is_array_of_t : std::false_type { };
26 
27 template <class T> struct is_array_of_t< T[], T> : std::true_type { };
28 template <class T> struct is_array_of_t<const T[], T> : std::true_type { };
29 template <class T> struct is_array_of_t< volatile T[], T> : std::true_type { };
30 template <class T> struct is_array_of_t<const volatile T[], T> : std::true_type { };
31 
32 template <class T, size_t N> struct is_array_of_t< T[N], T> : std::true_type { };
33 template <class T, size_t N> struct is_array_of_t<const T[N], T> : std::true_type { };
34 template <class T, size_t N> struct is_array_of_t< volatile T[N], T> : std::true_type { };
35 template <class T, size_t N> struct is_array_of_t<const volatile T[N], T> : std::true_type { };
36 
37 template <class T, size_t N> struct is_array_of_t< T(&)[N], T> : std::true_type { };
38 template <class T, size_t N> struct is_array_of_t<const T(&)[N], T> : std::true_type { };
39 template <class T, size_t N> struct is_array_of_t< volatile T(&)[N], T> : std::true_type { };
40 template <class T, size_t N> struct is_array_of_t<const volatile T(&)[N], T> : std::true_type { };
41 
42 // clang-format on
43 
44 template<class array_t, class T>
45 constexpr bool is_array_of_t_v = is_array_of_t<array_t, T>::value;
46 
47 } // namespace qx