0.3.0
Loading...
Searching...
No Matches
Array.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
13
14#pragma once
15
16#include <array>
17#include <cstddef>
18
19#include "util/Assert.h"
20
21namespace NAV
22{
23
24namespace detail
25{
26
29template<typename T, std::size_t... Is>
30constexpr std::array<T, sizeof...(Is)> create_array(const T& value, std::index_sequence<Is...> /* unused */)
31{
32 // cast Is to void to remove the warning: unused value
33 return { { (static_cast<void>(Is), value)... } };
34}
35
36} // namespace detail
37
41template<std::size_t N, typename T>
42constexpr std::array<T, N> create_array(const T& value)
43{
44 return detail::create_array(value, std::make_index_sequence<N>());
45}
46
51template<size_t N, typename Scalar>
52constexpr std::array<Scalar, N> genRangeArray(Scalar start, Scalar stepSize, [[maybe_unused]] Scalar end)
53{
54 std::array<Scalar, N> container{};
55
56 for (size_t i = 0; i < container.size(); i++)
57 {
58 container.at(i) = start;
59 INS_ASSERT_USER_ERROR(start < end, "The range exceeds the end value. Make the array bigger.");
60 start += stepSize;
61 }
62
63 INS_ASSERT_USER_ERROR(start + stepSize > end, "The end value exceeds the range. Make the array smaller.");
64
65 return container;
66};
67
68} // namespace NAV
constexpr std::array< T, sizeof...(Is)> create_array(const T &value, std::index_sequence< Is... >)
Create an array with the value assigned to all elements in the container.
Definition Array.hpp:30
constexpr std::array< Scalar, N > genRangeArray(Scalar start, Scalar stepSize, Scalar end)
Returns a container filled with the given range.
Definition Array.hpp:52
Assertion helpers.
#define INS_ASSERT_USER_ERROR(_EXP, _MSG)
Assert function with message.
Definition Assert.h:21