constexpr
implies inline
.
class the_class
{
struct the_struct
{
some_type_t the_member;
};
};
using the_member_type =
decltype(the_class::the_struct:the_member);
Declare function that accepts fixed-size array, that is passed by reference.
size_t getTimestamp(uint64_t (& timestamp)[ARRAY_SIZE]);