20 template <
size_t L, Primitive T>
23 static_assert(!std::is_const_v<T>);
27 static constexpr size_t size = L;
29 constexpr vec() =
default;
36 template <Primitive U>
37 explicit constexpr vec(U value);
44 template <
typename... U>
45 explicit constexpr vec(U...
data);
52 explicit constexpr vec(std::array<T, size>
const &arr) :
data{ arr } {}
58 explicit constexpr vec(std::array<T, size> &&arr) :
data{
std::move(arr) } {}
61 constexpr void reset() noexcept;
67 for (
int i = 0; i <
size; i++)
74 template <Primitive U>
76 template <Primitive U>
78 template <Primitive U>
80 template <Primitive U>
82 template <Primitive U>
96 [[nodiscard]]
constexpr T &
operator[](
size_t i);
98 [[nodiscard]]
constexpr T
const &
operator[](
size_t i)
const;
109 template <Primitive _>
123 template <
typename A,
typename B,
typename... C>
133 template <Primitive U>
136 data[offset] =
static_cast<T
>(u);
147 for (
size_t i = 0; i < V::size; i++)
149 data[offset + i] =
static_cast<T
>(
vec[i]);
160 template <
typename A,
typename B,
typename... C>
Contains mathematical utility functions and classes.
Definition of the mathematical vector with fixed size L and type T
constexpr T & operator[](size_t i)
Overloaded subscript operator for non-const rvec.
constexpr vec(std::array< T, size > const &arr)
Constructor from std::array.
constexpr vec< L, T > & operator%=(U const value) noexcept
std::array< T, size > data
The underlying data of the vector.
T type
Type of the vector elements.
static constexpr size_t get_parameter_pack_size()
Determines the size of a parameter pack for primitive types.
constexpr vec< L, T > & operator*=(U const value) noexcept
constexpr void unpack_data(size_t offset, U u)
Unpacks a single primitive value into the vector data.
static constexpr size_t size
Number of elements in the vector.
constexpr void unpack_data(size_t offset, V vec)
Unpacks a vector into the matrix data.
constexpr vec< L, T > & operator/=(U const value) noexcept
static constexpr size_t get_parameter_pack_size()
Determines the size of a parameter pack for vector types.
constexpr vec()=default
Default constructor.
constexpr vec(std::array< T, size > &&arr)
Move constructor from std::array.
constexpr vec< L, T > & operator+=(U const value) noexcept
constexpr vec< L, T > & operator-=(U const value) noexcept
constexpr void unpack_data(size_t offset, A a, B b, C... c)
Recursively unpacks multiple values into the vector data.
constexpr void reset() noexcept
Resets the vector to the zero vector.