Enumsยง
- Predicate ๐
- A string based predicate
Functionsยง
- contains_
like_ ๐pattern - ends_
with ๐ - This is faster than
str::ends_with
for 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
pattern
to a regex compatible pattern. To achieve that, it does: - starts_
with ๐ - This is faster than
str::starts_with
for small strings. See https://github.com/apache/arrow-rs/issues/6107 for more details.