| 320 | |
| 321 | public: |
| 322 | Y_PURE_FUNCTION inline TdSelf After(TCharType c) const noexcept { |
| 323 | TdSelf l, r; |
| 324 | return TrySplit(c, l, r) ? r : *this; |
| 325 | } |
| 326 | |
| 327 | Y_PURE_FUNCTION inline TdSelf Before(TCharType c) const noexcept { |
| 328 | TdSelf l, r; |
no outgoing calls
no test coverage detected