| 339 | inline String& ToUpperCase(); |
| 340 | |
| 341 | inline String GetLowerCase() const { |
| 342 | String Str(*this); |
| 343 | Str.ToLowerCase(); |
| 344 | return Str; |
| 345 | } |
| 346 | inline String GetUpperCase() const { |
| 347 | String Str(*this); |
| 348 | Str.ToUpperCase(); |
nothing calls this directly
no outgoing calls
no test coverage detected