I did not manage to figure out if constexpr implies also static in C++17.
I found this thread: constexpr vs. static const: Which one to prefer?
And I noticed this comment:
One more thing, in C++17, constexpr static data member variables will be inline too. That means you can omit the out of line definition of static constexpr variables, but not static const.
Does the logic in the comment above imply that constexpr also has a static property in C++17?
The reason I opened a new thread about this topic is to have something that is clear.
From what I managed to investigate I think constexpr and static are separated.
Sorry if the problem is not well formulated or good.
 
    