mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
trueFalseT.hpp
Go to the documentation of this file.
1/** \file trueFalseT.hpp
2 * \brief Declares and defines a true-false virtual type used for boolean template overrides
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 trueFalseT_hpp
28#define trueFalseT_hpp
29
30namespace mx
31{
32
33namespace meta
34{
35
36/// Template declaration of a trueFalseT type.
37/** The specialized types can be used for tag dispatching, that is achieving SFINAE-like behavior but with function
38 * overloading when identical function signatures are desired. This works because trueFalseT<true> and
39 * trueFalseT<false> are dfferent types.
40 *
41 * This is a slightly simpler construct than std::true_type and std::false_type, which are derived from
42 * std::integral_constant.
43 *
44 * This template type is not defined, only the specializations are. The specializations have a typedef of True or False,
45 * accordingly, and a static const member value which evaluates to true or false accordingly.
46 *
47 * \tparam trueFalse bool to choose which of the specializations to invoke.
48 *
49 * \ingroup meta
50 */
51template <bool trueFalse>
53
54/// The true specialization of trueFalseT.
55/** \ingroup meta
56 */
57template <>
58struct trueFalseT<true>
59{
60 typedef bool True; ///< Typedef which can be used for SFINAE
61 static const bool value = true; ///< bool member value = true
62};
63
64/// The false specialization of trueFalseT.
65/** \ingroup meta
66 */
67template <>
68struct trueFalseT<false>
69{
70 typedef bool False; ///< Typedef which can be used for SFINAE
71 static const bool value = false; ///< bool member value = false
72};
73
74} // namespace meta
75} // namespace mx
76
77#endif // trueFalseT_hpp
The mxlib c++ namespace.
Definition mxError.hpp:106
bool False
Typedef which can be used for SFINAE.
bool True
Typedef which can be used for SFINAE.
Template declaration of a trueFalseT type.