Enumsยง
- Predicate ๐
- A string based predicate
Functionsยง
- contains_
like_ ๐pattern - ends_
with ๐ - This is faster than
str::ends_withfor small strings. See https://github.com/apache/arrow-rs/issues/6107 for more details. - equals_
bytes ๐ - equals_
ignore_ ๐ascii_ case_ kernel - equals_
kernel ๐ - regex_
like ๐ - Transforms a like
patternto a regex compatible pattern. To achieve that, it does: - starts_
with ๐ - This is faster than
str::starts_withfor small strings. See https://github.com/apache/arrow-rs/issues/6107 for more details.