#include "modules/HostData/include/HostArray.hpp"
Implements the expected characteristics of a fixed-size array class. This class allows a "in-family" transfer of arrays without requiring the use of a library, including the STL. The rationale being that extention to GPU or other device code usually prohibits the STL, and therefore avoidance of using std::vector<T> or std::array<T,int> in interface definitions becomes a requirement to ensure interface extensibility.