cotila  1.2.1
A compile time linear algebra system
vector.h
Go to the documentation of this file.
1 
5 #ifndef COTILA_VECTOR_VECTOR_H_
6 #define COTILA_VECTOR_VECTOR_H_
7 
8 #include <array>
9 #include <cotila/detail/tmp.h>
10 #include <cotila/detail/assert.h>
11 #include <cstddef>
12 #include <type_traits>
13 
14 namespace cotila {
15 
25 template <typename T, std::size_t N> struct vector {
26  static_assert(N != 0, "vector must contain at least one element");
27  COTILA_DETAIL_ASSERT_ARITHMETIC(T)
28 
29  using value_type = T;
30  using size_type = std::size_t;
31  static constexpr size_type size = N;
32 
34 
41  constexpr T &operator[](size_type i) noexcept { return array[i]; }
42 
44  constexpr const T &operator[](size_type i) const noexcept { return array[i]; }
46 
48 
54  constexpr T *begin() noexcept { return array; }
55 
61  constexpr T *end() noexcept { return array + N; }
62 
64  constexpr const T *cbegin() const noexcept { return array; }
65 
67  constexpr const T *cend() const noexcept { return array + N; }
69 
70  T array[N];
71 };
72 
85 template <typename... Args> constexpr decltype(auto) make_vector(Args... args) {
86  return vector{args...};
87 }
88 
90 
100 template <typename T, typename... U>
101 vector(T, U...)
102  ->vector<std::enable_if_t<(std::is_same_v<T, U> && ...), T>,
103  1 + sizeof...(U)>;
104 
113 template <typename T, std::size_t N> vector(const T (&)[N])->vector<T, N>;
114 
123 template <typename T, std::size_t N> vector(const T (&)[N][2])->vector<std::complex<T>, N>;
124 
126 
129 } // namespace cotila
130 
131 #endif // COTILA_VECTOR_VECTOR_H_
constexpr T * begin() noexcept
returns an iterator to the beginning
Definition: vector.h:54
constexpr const T * cbegin() const noexcept
returns an iterator to the beginning
Definition: vector.h:64
Definition: math.h:16
vector(T, U...) -> vector< std::enable_if_t<(std::is_same_v< T, U > &&...), T >, 1+sizeof...(U)>
deduction guide for uniform initialization
A container representing a vector.
Definition: vector.h:25
decltype(auto) constexpr make_vector(Args... args)
constructs a cotila::vector from arguments
Definition: vector.h:85
constexpr T * end() noexcept
returns an iterator to the end
Definition: vector.h:61
decltype(auto) constexpr cotila::make_vector(Args... args)
constructs a cotila::vector from arguments
Definition: vector.h:85
constexpr const T & operator[](size_type i) const noexcept
access specified element
Definition: vector.h:44
static constexpr size_type size
size of the vector
Definition: vector.h:31
constexpr const T * cend() const noexcept
returns an iterator to the end
Definition: vector.h:67
constexpr T & operator[](size_type i) noexcept
access specified element
Definition: vector.h:41