You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 15, 2025. It is now read-only.
It shall be possible to construct and query ArrayString[W] instances at compile time.
This means, the following methods shall be constexpr:
Default and copy constructors (move isn't possible for constexpr objects)
all const methods - size(), data(), find*(), ...
Example:
constexpr spsl::ArrayStringBase<char, 64> a1("I'm a stack-based string and can store 64 characters + NUL");
static_assert(a1.length() == 58, "oops...");