OpenKalman
descriptor.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-2026 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_PATTERNS_DESCRIPTOR_HPP
17 #define OPENKALMAN_PATTERNS_DESCRIPTOR_HPP
18 
19 #include "values/values.hpp"
20 #include "patterns/interfaces/pattern_descriptor_traits.hpp"
21 
22 namespace OpenKalman::patterns
23 {
27  template<typename T>
28 #ifdef __cpp_concepts
29  concept descriptor =
30 #else
31  constexpr bool descriptor =
32 #endif
34  values::index<T>;
35 
36 }
37 
38 #endif
constexpr bool descriptor
T is an atomic (non-separable or non-composite) grouping of patterns::pattern objects.
Definition: descriptor.hpp:31
Header file for code relating to values (e.g., scalars and indices)
The namespace for features relating to patterns::pattern object.
Definition: collection_compares_with.hpp:24
Traits for patterns::pattern objects.
Definition: pattern_descriptor_traits.hpp:36