| 309 | } |
| 310 | |
| 311 | void NTokenizer::TTokenizer::TokenizeWithoutCopy(TStringBuf inputString, TVector<TStringBuf>* tokens) const { |
| 312 | Y_ASSERT(!NeedToModifyTokensFlag); |
| 313 | SplitByDelimiter(inputString, Options.Delimiter, Options.SplitBySet, Options.SkipEmpty, tokens); |
| 314 | if (Options.NumberProcessPolicy == ETokenProcessPolicy::Skip) { |
| 315 | FilterNumbers(tokens); |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | TVector<TStringBuf> NTokenizer::TTokenizer::TokenizeWithoutCopy(TStringBuf inputString) const { |
| 320 | TVector<TStringBuf> tokens; |
no test coverage detected