- Added some more notes to the planning doc regarding shared libraries - Started adding unit tests for the C++ lang library.
53 lines
2.1 KiB
C
53 lines
2.1 KiB
C
// =====================================================================================================================
|
|
// fennec, a free and open source game engine
|
|
// Copyright © 2025 Medusa Slockbower
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
// =====================================================================================================================
|
|
|
|
///
|
|
/// \file metaprogramming.h
|
|
/// \brief \ref fennec_lang
|
|
///
|
|
///
|
|
/// \details
|
|
/// \author Medusa Slockbower
|
|
///
|
|
/// \copyright Copyright © 2025 Medusa Slockbower ([GPLv3](https://www.gnu.org/licenses/gpl-3.0.en.html))
|
|
///
|
|
///
|
|
|
|
#ifndef FENNEC_LANG_METAPROGRAMMING_H
|
|
#define FENNEC_LANG_METAPROGRAMMING_H
|
|
|
|
///
|
|
/// \page fennec_lang_metaprogramming Metaprogramming Library
|
|
///
|
|
/// This is a sub-library of the fennec \ref fennec_lang. Metaprogramming is a method of obtaining information about the
|
|
/// structure of the code and changing its behaviour at compile time. This includes getting traits of types, such as with
|
|
/// \ref fennec::is_signed. You may even \ref fennec_lang_conditional_types "programmatically enable" functions
|
|
/// based on the info of the types that the function uses.
|
|
///
|
|
/// - \subpage fennec_lang_constants
|
|
/// - \subpage fennec_lang_conditional_types
|
|
/// - \subpage fennec_lang_numeric_transforms
|
|
/// - \subpage fennec_lang_sequences
|
|
/// - \subpage fennec_lang_type_sequences
|
|
/// - \subpage fennec_lang_type_traits
|
|
/// - \subpage fennec_lang_type_transforms
|
|
///
|
|
///
|
|
|
|
#endif // FENNEC_LANG_METAPROGRAMMING_H
|