Hacker News new | ask | show | jobs
by kccqzy 1020 days ago
But what can you do with that string list afterwards? You can't store it anywhere to be accessed at run time, can you?
2 comments

The important part is that all the intermediate strings used during the computation are constexpr, to guarantee that the work happens during compilation.

Also, constexpr symbols can be demoted to regular const as needed by the compiler if necessary, such as when getting a pointer to one. constexpr doesn't mean "compile-time only", it means "compile-time compatible"

Right - you can use the std::string at compile time but since it allocates dynamically you need to copy to a fixed size char[]/std::array to use at runtime.