- Fixed Documentation for Consistency

- Added more documentation, predominantly in the Math Library
This commit is contained in:
2025-06-16 01:48:31 -04:00
parent 096e82f47a
commit db7d52c86c
28 changed files with 861 additions and 538 deletions

View File

@@ -48,7 +48,6 @@ template<typename T, T V> struct integral_constant
/// \brief value of the constant
inline static constexpr T value = V;
///
///
/// \brief cast operator to allow for braced initialization
/// \returns the value of the constant
@@ -56,7 +55,6 @@ template<typename T, T V> struct integral_constant
};
///
///
/// \brief metaprogramming boolean constant
///
@@ -67,14 +65,12 @@ struct bool_constant
: integral_constant<bool_t, V> {};
///
///
/// \brief metaprogramming true constant
struct true_type
: bool_constant<true> {};
///
///
/// \brief metaprogramming false constant
struct false_type