@brief Builds an empty String with a given Encoding @param encoding The encoding of the String
| 29 | /// @brief Builds an empty String with a given Encoding |
| 30 | /// @param encoding The encoding of the String |
| 31 | String(StringEncoding encoding = StringEncoding::Utf8) : encoding(encoding) {} |
| 32 | |
| 33 | /// @brief Builds String from a StringSpan |
| 34 | /// @param sv StringSpan to be assigned to this String |
nothing calls this directly
no test coverage detected