|
HikoGUI
A low latency retained GUI
|
#include <hikogui/fixed_string.hpp>
Public Types | |
| using | value_type = char |
Data Fields | |
| std::array< char, N > | _str = {} |
A string which may be used as a none-type template parameter.
example: ``` template<hi::fixed_string Foo> class A { auto bar() { return std::string{Foo}; } };
std::string test() { auto a = A<"hello">{}; return a.bar(); } ```