1
0
şunun yansıması https://github.com/bspeice/dtparse eşitlendi 2025-12-27 07:18:35 -05:00

tokenize shouldn't be public

Bu işleme şunda yer alıyor:
Bradlee Speice
2018-07-24 22:47:22 -04:00
ebeveyn 0d18eb524b
işleme c6feaebe71

Dosyayı Görüntüle

@ -85,7 +85,7 @@ impl From<ParseInternalError> for ParseError {
type ParseResult<I> = Result<I, ParseError>;
type ParseIResult<I> = Result<I, ParseInternalError>;
pub fn tokenize(parse_string: &str) -> Vec<String> {
pub(crate) fn tokenize(parse_string: &str) -> Vec<String> {
let tokenizer = Tokenizer::new(parse_string);
tokenizer.collect()
}