Array.h
Go to the documentation of this file.
1 /*************************************************************************
2 > File Name: Array.h
3 > Project Name: CubbyFlow
4 > Author: Chan-Ho Chris Ohk
5 > Purpose: Generic N-dimensional array class interface.
6 > Created Time: 2017/01/23
7 > Copyright (c) 2018, Chan-Ho Chris Ohk
8 *************************************************************************/
9 #ifndef CUBBYFLOW_ARRAY_H
10 #define CUBBYFLOW_ARRAY_H
11 
12 #include <cstddef>
13 
14 namespace CubbyFlow
15 {
27  template <typename T, size_t N>
28  class Array final
29  {
30  public:
31  static_assert(N < 1 || N > 3, "Not implemented - N should be either 1, 2, or 3.");
32  };
33 }
34 
35 #endif
Definition: pybind11Utils.h:24
Generic N-dimensional array class interface.
Definition: Array.h:28