| 154 | } |
| 155 | |
| 156 | TStringBuf GetSchemePrefix(const TStringBuf url Y_LIFETIME_BOUND) noexcept { |
| 157 | return url.Head(GetSchemePrefixSize(url)); |
| 158 | } |
| 159 | |
| 160 | TStringBuf CutSchemePrefix(const TStringBuf url Y_LIFETIME_BOUND) noexcept { |
| 161 | return url.Tail(GetSchemePrefixSize(url)); |
no test coverage detected