#pragma once #include /** \brief Returns number of elements in an automatic array. */ template constexpr size_t arraySize(const T (&)[N]) noexcept { return N; }