returns true if string started with `prefix`, false otherwise
| 358 | |
| 359 | // returns true if string started with `prefix`, false otherwise |
| 360 | inline bool SkipPrefix(const TdSelf& prefix) noexcept { |
| 361 | return AfterPrefix(prefix, *this); |
| 362 | } |
| 363 | |
| 364 | // returns true if string ended with `suffix`, false otherwise |
| 365 | inline bool ChopSuffix(const TdSelf& suffix) noexcept { |
no outgoing calls
no test coverage detected