[#44F13B9E5D27CC7979D0DC5E2965651E58F41047]
Return the union of two character sets.
constexpr lut_chars operator+( lut_chars const& cs0, lut_chars const& cs1) noexcept;
This function returns a new character set which contains all of the characters in `cs0` as well as all of the characters in `cs`.
This creates a character set which includes all letters and numbers
constexpr lut_chars alpha_chars(
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz");
constexpr lut_chars alnum_chars = alpha_chars + "0123456789";
Constant.