Jet  v1.3.3
array.h
Go to the documentation of this file.
1 // Copyright (c) 2018 Doyub Kim
2 //
3 // I am making my contributions/submissions to this project solely in my
4 // personal capacity and am not conveying any rights to any intellectual
5 // property of any third parties.
6 
7 #ifndef INCLUDE_JET_ARRAY_H_
8 #define INCLUDE_JET_ARRAY_H_
9 
10 #include <jet/size.h>
11 
12 namespace jet {
13 
25 template <typename T, size_t N>
26 class Array final {
27  public:
28  static_assert(
29  N < 1 || N > 3, "Not implemented - N should be either 1, 2 or 3.");
30 };
31 
32 } // namespace jet
33 
34 #endif // INCLUDE_JET_ARRAY_H_
jet
Definition: advection_solver2.h:18
jet::Array
Generic N-dimensional array class interface.
Definition: array.h:26
size.h