mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
typeTraits.hpp
Go to the documentation of this file.
1/** \file typeTraits.hpp
2 * \brief A collection of type trait evaluations.
3 * \ingroup utils_files
4 * \author Jared R. Males (jaredmales@gmail.com)
5 *
6 */
7
8//***********************************************************************//
9// Copyright 2015, 2016, 2017, 2018 Jared R. Males (jaredmales@gmail.com)
10//
11// This file is part of mxlib.
12//
13// mxlib is free software: you can redistribute it and/or modify
14// it under the terms of the GNU General Public License as published by
15// the Free Software Foundation, either version 3 of the License, or
16// (at your option) any later version.
17//
18// mxlib is distributed in the hope that it will be useful,
19// but WITHOUT ANY WARRANTY; without even the implied warranty of
20// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21// GNU General Public License for more details.
22//
23// You should have received a copy of the GNU General Public License
24// along with mxlib. If not, see <http://www.gnu.org/licenses/>.
25//***********************************************************************//
26
27#ifndef typeTraits_hpp
28#define typeTraits_hpp
29
30namespace mx
31{
32
33namespace meta
34{
35
36template <typename... Ts>
37using void_t = void;
38
39template <typename T, typename = void>
40struct has_value_type : trueFalseT<false>
41{
42};
43
44/// Test whether a type has a typedef of "value_type"
45/** Used for compile-time determination of type.
46 *
47 * Example usage:
48 * \code
49 * bool has_vt = has_value_type<std::vector<float> >; //Evaluates to true
50 * bool has_not_vt = has_value_type<float>; //Evaluates to false
51 * \endcode
52 *
53 * This was taken directly from the example at http://en.wikipedia.org/wiki/Substitution_failure_is_not_an_error
54 *
55 * \ingroup meta
56 */
57template <typename T>
58struct has_value_type<T, void_t<typename T::value_type>> : trueFalseT<true>
59{
60};
61
62/// Check whether a type is std::vector or not.
63/** First resolves whether the type as a typedef value_type. If not, then member value will be false.
64 * If it does have a member type value_type, then it uses std::is_same to compare the type to std::vector.
65 * Then value is equal to std::is_same<T, std::vector<typenameT::value_type>>::value.
66 *
67 * \tparam T is the type to evaulate for vector-ness.
68 * \tparam has_value_type is a boolean type based on has_value_type SFINAE test.
69 *
70 * \ingroup meta
71 */
72template <typename T, bool if_value_type = has_value_type<T>::value>
74
75/// Partial specialization for the case with value_type member type in T, invoking std::is_same.
76/** \ingroup meta
77 */
78template <typename T>
79struct is_std_vector<T, true>
80{
81 static const bool value = std::is_same<T, std::vector<typename T::value_type>>::value;
82};
83
84/// Partial specialization for the case with no value_type member type in T.
85/** \ingroup meta
86 */
87template <typename T>
88struct is_std_vector<T, false>
89{
90 static const bool value = false;
91};
92
93} // namespace meta
94} // namespace mx
95
96#endif // typeTraits_hpp
The mxlib c++ namespace.
Definition mxError.hpp:106
Check whether a type is std::vector or not.
Template declaration of a trueFalseT type.