Construct an obfuscated string of characters. \param str The array of characters (including the null terminal byte).
| 43 | /// Construct an obfuscated string of characters. |
| 44 | /// \param str The array of characters (including the null terminal byte). |
| 45 | consteval ObfuscatedString(char const (&str)[N]) noexcept |
| 46 | : algos_{generate_sum(str)} { |
| 47 | encode(str); |
| 48 | }; |
| 49 | |
| 50 | /// Construct an obfuscated string of characters. |
| 51 | /// \param str The array of characters (including the null terminal byte). |
nothing calls this directly
no test coverage detected