29template<
typename T, std::size_t... Is>
30constexpr std::array<T,
sizeof...(Is)>
create_array(
const T& value, std::index_sequence<Is...> )
33 return { { (
static_cast<void>(Is), value)... } };
41template<std::
size_t N,
typename T>
42constexpr std::array<T, N> create_array(
const T& value)
44 return detail::create_array(value, std::make_index_sequence<N>());
51template<
size_t N,
typename Scalar>
52constexpr std::array<Scalar, N>
genRangeArray(Scalar start, Scalar stepSize, [[maybe_unused]] Scalar end)
54 std::array<Scalar, N> container{};
56 for (
size_t i = 0; i < container.size(); i++)
58 container.at(i) = start;
63 INS_ASSERT_USER_ERROR(start + stepSize > end,
"The end value exceeds the range. Make the array smaller.");
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
#define INS_ASSERT_USER_ERROR(_EXP, _MSG)
Assert function with message.
Definition Assert.h:21