returns true if string ended with `suffix`, false otherwise
| 363 | |
| 364 | // returns true if string ended with `suffix`, false otherwise |
| 365 | inline bool ChopSuffix(const TdSelf& suffix) noexcept { |
| 366 | return BeforeSuffix(suffix, *this); |
| 367 | } |
| 368 | |
| 369 | public: |
| 370 | // returns tail, including pos |