OpenKalman
has_dynamic_dimensions.hpp
Go to the documentation of this file.
1 /* This file is part of OpenKalman, a header-only C++ library for
2  * Kalman filters and other recursive filters.
3  *
4  * Copyright (c) 2019-2023 Christopher Lee Ogden <ogden@gatech.edu>
5  *
6  * This Source Code Form is subject to the terms of the Mozilla Public
7  * License, v. 2.0. If a copy of the MPL was not distributed with this
8  * file, You can obtain one at https://mozilla.org/MPL/2.0/.
9  */
10 
16 #ifndef OPENKALMAN_HAS_DYNAMIC_DIMENSIONS_HPP
17 #define OPENKALMAN_HAS_DYNAMIC_DIMENSIONS_HPP
18 
19 
20 namespace OpenKalman
21 {
25  template<typename T>
26 #ifdef __cpp_concepts
27  concept has_dynamic_dimensions =
28 #else
29  constexpr bool has_dynamic_dimensions =
30 #endif
31  (dynamic_index_count_v<T> == dynamic_size) or (dynamic_index_count_v<T> > 0);
32 
33 
34 } // namespace OpenKalman
35 
36 #endif //OPENKALMAN_HAS_DYNAMIC_DIMENSIONS_HPP
The root namespace for OpenKalman.
Definition: basics.hpp:34
constexpr bool has_dynamic_dimensions
Specifies that T has at least one index with dynamic dimensions.
Definition: has_dynamic_dimensions.hpp:29
constexpr std::size_t dynamic_size
A constant indicating that a size or index is dynamic.
Definition: global-definitions.hpp:33