qxLib
type_strings.h
Go to the documentation of this file.
1 /**
2 
3  @file type_strings.h
4  @author Khrapov
5  @date 24.09.2022
6  @copyright © Nick Khrapov, 2022. All right reserved.
7 
8 **/
9 #pragma once
10 
13 #include <qx/macros/config.h>
14 
15 #include <array>
16 
17 namespace qx
18 {
19 
20 /**
21 
22  @class type_strings
23  @brief The class allows you to get strings with information about the type,
24  including its full name, name without template parameters
25  and a list of template parameters separately
26  @details Strings are COMPILER IMPLEMENTATION DEPENDENT but can be used for a human readable output
27  @tparam T - type to get information for
28  @tparam char_t - char type to use
29  @author Khrapov
30  @date 24.09.2022
31 
32 **/
33 template<class T, class char_t = char_type>
35 {
36  using string_view_type = basic_string_view<char_t>;
37 
38 private:
39  static constexpr string_view_type lambdaMarker = QX_STR_PREFIX(char_t, "lambda");
40  static constexpr string_view_type create_full_signature();
41  static constexpr string_view_type create_signature();
42  static constexpr size_t get_num_template_parameters();
43 
44 public:
45  /**
46  @brief Get type signature (full name with template parameters)
47  @retval - type signature
48  **/
49  static constexpr string_view_type get_signature();
50 
51  /**
52  @brief Get type name (short name without template parameters)
53  @retval - type name
54  **/
55  static constexpr string_view_type get_name();
56 
57  /**
58  @brief Get type template parameters
59  @retval - template parameters
60  **/
61  static constexpr auto get_template_parameters();
62 };
63 
64 } // namespace qx
65 
66 #include <qx/meta/type_strings.inl>
The class allows you to get strings with information about the type, including its full name,...
Definition: type_strings.h:35
static constexpr auto get_template_parameters()
Get type template parameters.
static constexpr string_view_type get_name()
Get type name (short name without template parameters)
static constexpr string_view_type get_signature()
Get type signature (full name with template parameters)
#define QX_STR_PREFIX(value_t, str)
Chose witch of prefixes add to string : L or none.
Definition: string_utils.h:249