OpenKalman
indexible.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-2025 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_INDEXIBLE_HPP
17 #define OPENKALMAN_INDEXIBLE_HPP
18 
20 
21 namespace OpenKalman
22 {
28  template<typename T>
29 #ifdef __cpp_concepts
30  concept indexible =
31 #else
32  constexpr bool indexible =
33 #endif
35 
36 
37 }
38 
39 #endif
constexpr bool indexible
T is a multidimensional array type.
Definition: indexible.hpp:32
The root namespace for OpenKalman.
Definition: basics.hpp:34
Forward declaration of object_traits, which must be defined for all objects used in OpenKalman...
Definition: object_traits.hpp:38